25 lines
588 B
HTML
25 lines
588 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page Title</title>
|
|
<script src='main.js'></script>
|
|
<base href="/" target="_blank">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<a href="/">Link text</a>
|
|
<img src="/picture.png"></img>
|
|
<audio src="/audio.mp3" controls>Audio is unsupported</audio>
|
|
<video src="/video.mp4" controls>Video is unsupported</video>
|
|
<audio controls>
|
|
<source src="audio.mp3"></source>
|
|
</audio>
|
|
<map>
|
|
<area href="/"></area>
|
|
</map>
|
|
<object data="/video.mp4"></object>
|
|
<iframe src="/" title="The same Site"></iframe>
|
|
<meta>
|
|
</body>
|
|
</html>
|