-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (81 loc) · 3.01 KB
/
index.html
File metadata and controls
89 lines (81 loc) · 3.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
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
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SaM RaJPuT</title>
<meta name="description" content="SaM RaJPuT : The 0ne and 0nly">
<!-- Font Awesome for social icons -->
<link rel="stylesheet" href="css/all.min.css">
<!-- IBM Plex Sans Devanagari font -->
<link href="css/css2.css" rel="stylesheet">
<script type="module" crossorigin="" src="js/index-c_262Wyp.js"></script>
<link rel="stylesheet" crossorigin="" href="css/style.css">
</head>
<body>
<div id="root">
<div class="profile-container">
<div class="profile-image">
<img src="assets/sam.jpg" alt="Sam Rajput" width="150" height="150" style="border-radius: 50%;">
</div>
<div class="name">
<span class="rgb-text">SaM RaJPuT</span>
</div>
<div class="social-links">
<a href="https://www.instagram.com/unique__error/" target="_blank" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
<a href="https://t.me/UniQueErrOr" target="_blank" class="social-icon">
<i class="fab fa-telegram"></i>
</a>
<a href="https://www.threads.com/@unique_error" target="_blank" class="social-icon">
<i class="fab fa-threads"></i>
</a>
<a href="https://x.com/unique_error" target="_blank" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="https://m.facebook.com/UniQue.ErrOr/" target="_blank" class="social-icon">
<i class="fab fa-facebook"></i>
</a>
<a href="https://www.facebook.com/Mr.Sa1M" target="_blank" class="social-icon">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://youtube.com/@uniqueerror" target="_blank" class="social-icon">
<i class="fab fa-youtube"></i>
</a>
<a href="https://www.snapchat.com/add/unique.error" target="_blank" class="social-icon">
<i class="fab fa-snapchat"></i>
</a>
<a href="http://www.linkedin.com/in/joginder-singh-rajput" target="_blank" class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/unique-error" target="_blank" class="social-icon">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<!-- Background Music -->
<audio id="bgMusic" autoplay loop muted>
<source src="Shiv-Tandav.mp3" type="audio/mpeg">
</audio>
<script>
const audio = document.getElementById('bgMusic');
const startPoint = 30; // Lyrics start at 0:30 sec
audio.addEventListener('canplay', () => {
if (audio.currentTime < startPoint) {
audio.currentTime = startPoint;
}
audio.muted = false; // Unmute after seek
audio.play();
});
// If autoplay blocked, play on click
document.body.addEventListener('click', () => {
if (audio.paused) {
audio.currentTime = startPoint;
audio.play();
}
});
</script>
</body>
</html>