Posts

Showing posts with the label referrerpolicy Attribute

How to use referrerpolicy Attribute value (strict-origin ) with < iframe > tag in HTML ? with example

 How to use referrerpolicy Attribute value (strict-origin ) with < iframe > tag in HTML ? with example  Referrerpolicy Attribute value (strict-origin )  Only send referrer info if the security level is the same (e.g. HTTPS to HTTPS). Do not send to a less secure destination (e.g. HTTPS to HTTP). Example <html> <body> <h1>The iframe referrerpolicy attribute Example</h1> <iframe src ="https://tech.thinkforu.org"  referrerpolicy=" strict-origin "> </iframe> </body> </html>

How to use referrerpolicy Attribute value ( unsafe-url ) with < iframe > tag in HTML ? with example

How to use referrerpolicy Attribute value ( unsafe-url ) with < iframe > tag in HTML ? with example Referrerpolicy Attribute value ( unsafe-url ) used for   Send origin, path and query string (but not fragment, password, or username). This value is considered unsafe Example <html> <body> <h1>The iframe referrerpolicy attribute Example</h1> <iframe src="https://tech.thinkforu.org "  referrerpolicy=" unsafe-url  "> </iframe> </body> </html>

How to use referrerpolicy Attribute value ( strict-origin-when-cross-origin ) with < iframe > tag in HTML ? with example

 How to use referrerpolicy Attribute value ( strict-origin-when-cross-origin ) with < iframe > tag in HTML ? with example Referrerpolicy Attribute value ( strict-origin-when-cross-origin )   Send full path when performing a same-origin request. Send only origin when the security level stays the same (e.g. HTTPS to HTTPS). Send no header to a less secure destination (HTTPS to HTTP). Example <html> <body> <h1>Referrerpolicy attribute Example</h1> <iframe src="https://www.tech.thinkforu.org"  referrerpolicy=" strict-origin-when-cross-origin "> </iframe> </body> </html>

How to use referrerpolicy Attribute value ( origin-when-cross-origin ) with < iframe > tag in HTML ? with example

 How to use referrerpolicy Attribute value ( origin-when-cross-origin ) with < iframe > tag in HTML ? with example Referrerpolicy Attribute value ( origin-when-cross-origin ) used For cross-origin requests: Send only scheme, host, and port. For same-origin requests: Also include the path Example <html> <body> <h1> Example of iframe referrerpolicy attribute</h1> <iframe src ="https://www.tech.thinkforu.org"  referrerpolicy=" origin-when-cross-origin "> </iframe> </body> </html>

How to use referrerpolicy Attribute value ( no-referrer-when-downgrade ) with < iframe > tag in HTML ? with example

How to use referrerpolicy Attribute value ( no-referrer-when-downgrade ) with < iframe > tag in HTML ? with example Referrerpolicy Attribute value ( no-referrer-when-downgrade )    in iframe Default. The referrer header will not be sent to origins without HTTPS. Example <html> <body> <h1>The iframe referrerpolicy attribute Example</h1> <iframe src="https://www.tech.thinkforu.org/"   referrerpolicy="  no-referrer-when-downgrade  "> </iframe> </body> </html>

How to use < iframe > tag with referrerpolicy Attribute in HTML ? with example

 How to use < iframe > tag with referrerpolicy Attribute in HTML ? with example  The referrerpolicy attribute specifies which referrer information to send when fetching an iframe. Example <html> <body> <h1>referrerpolicy attribute example</h1> <iframe src ="https://tech.thinkforu.org"  referrerpolicy="no-referrer"> </iframe> </body> </html>