added demo site for testing elements

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

BIN
demo_site/audio.mp3 Normal file

Binary file not shown.

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>

BIN
demo_site/picture.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

1
demo_site/script.js Normal file
View File

@ -0,0 +1 @@
alert("alert")

3
demo_site/style.css Normal file
View File

@ -0,0 +1,3 @@
html {
background-color: white;
}

BIN
demo_site/video.mp4 Normal file

Binary file not shown.