-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.01 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.01 KB
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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/fav.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>websu!</title>
</head>
<body>
<div class="bg-blank pointer-events-none w-screen h-screen fixed">
<audio></audio>
<div
class="fixed h-screen duration-500 transition-colors z-0 items-center justify-center w-full">
<div class="backg">
<img
id="backgroundImage"
onerror="this.src='/original_1.jpg'"
class="scale-[1.01] duration-1000 h-screen w-full object-cover bg-center opacity-0" />
<video
id="backgroundVideo"
class="h-screen w-full object-cover opacity-50 brightness-50">
<source
id="backgroundVideoSource1"
class="bgvid"
type="video/mp4" />
</video>
</div>
</div>
</div>
<div id="root" class="w-screen montserrat h-screen fixed"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>