Example of Removing iFrame Border - HTML CSS HTML

HTML CSS examples for HTML:iframe

Description

Example of Removing iFrame Border

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of Removing iFrame Border</title> 
 </head> <!--from www  .  j  ava2  s  .c  o m-->
 <body> 
  <iframe src="http://java2s.com" frameborder="0"> alternative content for browsers which do not support iframe. </iframe>   
 </body>
</html>

Related Tutorials