Example of HTML Iframe - HTML CSS HTML

HTML CSS examples for HTML:iframe

Description

Example of HTML Iframe

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of HTML Iframe</title> 
 </head> <!--   www .  j av  a 2s .c o  m-->
 <body> 
  <iframe src="http://java2s.com" width="300" height="200"> alternative content for browsers which do not support iframe. </iframe>   
 </body>
</html>

Related Tutorials