HTML Iframes
11 - Oct - 2021
XpertPhp
26
The iframe element specifies an inline frame. An iframe is used to embed another document inside the present HTML document. Example
<!DOCTYPE html> <html> <head> <title>HTML Iframes</title> </head> <body> <iframe width="500" height="150"src="https://w3snippets.com/"></iframe> </body> </html>Output