Set iframe as target for anchor link target in HTML and CSS

Description

The following code shows how to set iframe as target for anchor link target.

Example


<!DOCTYPE HTML>
<html>
<body>
<a href="http://java2s.com" target="myframe">java2s.com</a>
<iframe name="myframe" width="300" height="100">
</iframe><!--from w  w  w.  j  av a  2  s  .c om-->
</body>
</html>

Click to view the demo

The code above generates the following result.

Set iframe as target for anchor link target in HTML and CSS