15 lines
335 B
HTML
15 lines
335 B
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Opening links in a specific iframe</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<iframe id="my-iframe"></iframe>
|
||
|
<p>
|
||
|
A <a href="/data/hello.txt" target="my-iframe">link</a> to be opened in the iframe above.
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|