added demo site for testing elements

This commit is contained in:
2024-11-12 17:50:59 -07:00
parent 7cac880f8e
commit f87a43c3a9
6 changed files with 28 additions and 0 deletions

24
demo_site/index.html Normal file
View File

@@ -0,0 +1,24 @@
<!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>