-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 848 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="cookies" id="permission">
<div>
<video width="100%" height="auto" autoplay muted>
<source src="./assets/vid/rock.mp4" type="video/mp4">
</video>
</div>
<div id="myText" style="display: none;">
<p>If you want to see that badly designed webpage I made for my web technologies practical in college then it is here : <a href="./old-stuff.html">viewer descretion advised, cuz it contains nasty corporate like posturing</a></p>
</div>
</body>
<script>
// write script to make the div with id="myText" appear after 4 seconds
setTimeout(() => {
document.getElementById("myText").style.display = "block";
}, 4000);
</script>
</html>