Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Specify iFrame Dimensions in HTML</title> </head> <body> <h2>Specify Width and Height Using Attributes</h2> <iframe src="/examples/html/hello.html" width="400" height="200"></iframe> <hr> <h2>Specify Width and Height Using CSS</h2> <iframe src="/examples/html/hello.html" style="width: 400px; height: 200px;"></iframe> </body> </html>