HTML CSS examples for HTML:iframe
Example of Removing iFrame Border
<!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>