added demo site for testing elements
This commit is contained in:
parent
7cac880f8e
commit
f87a43c3a9
BIN
demo_site/audio.mp3
Normal file
BIN
demo_site/audio.mp3
Normal file
Binary file not shown.
24
demo_site/index.html
Normal file
24
demo_site/index.html
Normal 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
BIN
demo_site/picture.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
1
demo_site/script.js
Normal file
1
demo_site/script.js
Normal file
@ -0,0 +1 @@
|
||||
alert("alert")
|
3
demo_site/style.css
Normal file
3
demo_site/style.css
Normal file
@ -0,0 +1,3 @@
|
||||
html {
|
||||
background-color: white;
|
||||
}
|
BIN
demo_site/video.mp4
Normal file
BIN
demo_site/video.mp4
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user