-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (84 loc) · 4.02 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
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dyamuh's website</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<canvas id="rainCanvas"></canvas>
<div class="content">
<div class="box">
<div class="profile-pic">
<img src="pfp.jpg" alt="Profile Picture" />
</div>
<h1>NotDyamuh</h1>
<p>lazy web developer interested in chromebook jailbreaks and networking.</p>
<div class="links">
<a href="https://phantomos.dyamuh.com/" class="link">
<img src="https://avatars.githubusercontent.com/u/200521621?s=400&u=3f72bfc47cde625c2b6360e5cc180d25992d19a7&v=4"/>
</a>
<a href="https://github.com/Phantom-Proxies/PhantomOSv1" class="link">
<img src="https://avatars.githubusercontent.com/u/200521621?s=400&u=3f72bfc47cde625c2b6360e5cc180d25992d19a7&v=4"/>
</a>
<a href="https://sh1mmer.dyamuh.com/" class="link" id="middleButton">
<img src="https://darkn.bio/img/sh1mmer-alt.webp"/>
</a>
<a href="https://fh.dyamuh.com/" class="link">
<img src="https://darkn.bio/img/download.webp"/>
</a>
<a href="https://space.dyamuh.com/" class="link">
<img src="https://raw.githubusercontent.com/NightProxy/Space/refs/heads/main/public/assets/favicon.ico"/>
</a>
</div>
</div>
<div class="social-links">
<a href="https://github.com/NotDyamuh" class="social-link">
<img src="https://cdn.pixabay.com/photo/2022/01/30/13/33/github-6980894_960_720.png" alt="GitHub" />
</a>
<a href="https://github.com/Phantom-Proxies" class="social-link">
<img src="https://avatars.githubusercontent.com/u/200521621?s=400&u=3f72bfc47cde625c2b6360e5cc180d25992d19a7&v=4" alt="GithubOrg" />
</a>
<a href="https://instagram.com/humaydkhann/" class="social-link">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/2048px-Instagram_logo_2016.svg.png" alt="Instagram" />
</a>
<a href="https://discord.com/invisible_taewon" class="social-link">
<img src="https://static.vecteezy.com/system/resources/previews/023/986/880/non_2x/discord-logo-discord-logo-transparent-discord-icon-transparent-free-free-png.png" alt="Discord" />
</a>
</div>
</div>
<div id="customCursor"></div>
<audio id="backgroundAudio" src="watch_the_party_die.mp3" preload="auto" loop></audio>
<div class="modal" id="audioModal">
<p>Click Anywhere</p>
</div>
<div class="music-player">
<div class="controls">
<button id="prevButton" class="control-button"><i class="fas fa-backward"></i></button>
<button id="playButton" class="control-button"><i class="fas fa-play"></i></button>
<button id="nextButton" class="control-button"><i class="fas fa-forward"></i></button>
</div>
<div class="song-info">
<span id="songTitle">Watch The Party Die</span> <span id="artist">dyamuh</span>
</div>
<input type="range" id="volumeSlider" min="0" max="1" step="0.1" value="1">
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<footer class="footer">
<p>Made with love and lots of pain by dyamuh ❤️</p>
</footer>
<script src="script.js"></script>
</body>
</html>