-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (74 loc) · 3.26 KB
/
index.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>szvy.win</title>
<link rel="icon" type="image/png" href="pfp.png"/>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap" rel="stylesheet">
<meta name="google-adsense-account" content="ca-pub-3298943858369433">
</head>
<body>
<div id="overlay">
<div id="enter-text">click anywhere to enter</div>
</div>
<video autoplay muted loop id="bg-video">
<source src="bg.mp4" type="video/mp4">
</video>
<div class="content">
<div class="profile-box">
<div class="profile">
<img src="pfp.png" alt="Profile Picture" id="profile-pic">
<h1 id="username">szvy</h1>
</div>
<p id="p1">hi, im szvy. a 13 year old web developer. 🏳️⚧️</p>
<p id="p1">projects</p>
<div class="links">
<a href="https://play.szvy.win" class="link">szvy central</a>
<a href="https://vistachat.szvy.win" class="link">vistachat</a>
<a href="https://nowgg.cloud" class="link">nowgg.cloud</a>
<a href="https://extract-game.vercel.app" class="link">game extractor</a>
</div> <br>
<p id="p1">social medias</p>
<div class="links">
<a href="https://www.youtube.com/channel/UC3OwuSVWK2M3Ubhsr_1ReIA" class="link">youtube</a>
<a href="https://instagram.com/szvy.yt" class="link">instagram</a>
<a href="https://tiktok.com/@szvy.mp4" class="link">tiktok</a>
</div>
<div class="links">
<a href="https://x.com/SubToSzvy" class="link">twitter</a>
<a href="https://github.com/szvy" class="link">github</a>
<a href="https://discord.com/users/673264839061405698/" class="link">discord</a>
</div>
<div class="links">
<a href="mailto:[email protected]" class="link">email</a>
</div>
<div class="volume-container">
<input type="range" id="volume-control" min="0" max="1" step="0.01" value="1">
<label for="volume-control" class="volume-label">Volume</label>
</div>
</div>
<audio id="bg-music" src="bg.mp3" loop></audio>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
const overlay = document.getElementById('overlay');
const content = document.querySelector('.content');
const bgMusic = document.getElementById('bg-music');
const volumeControl = document.getElementById('volume-control');
overlay.addEventListener('click', () => {
overlay.style.opacity = '0';
setTimeout(() => {
overlay.style.display = 'none';
content.style.display = 'flex';
bgMusic.play();
}, 1000);
});
volumeControl.addEventListener('input', (e) => {
bgMusic.volume = e.target.value;
});
});
</script>
</body>
</html>