HTML CSS examples for HTML:iframe
Example of Opening Links in an iFrame
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of Opening Links in an iFrame</title> </head> <!--from ww w . j a v a 2 s. c om--> <body> <iframe src="http://java2s.com" name="myFrame"></iframe> <p><a href="http://www.java2s.com" target="myFrame">java2s.com</a></p> </body> </html>