-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (110 loc) · 4.58 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D0t</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
#siteIcon, #siteName { position: relative; float: left; }
#siteName { padding: 0; margin: 0; }
#siteIcon { text-decoration: none; }
.player { text-align: center; }
button {
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
input[type="range"] {
width: 200px;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<br>
<header>
<div id="header">
<br>
<a href="https://0xd0t.io/">
<img src="./images/rizal.png" alt="Site Icon" width="80px" height="auto" id="siteIcon">
</a>
<br><br>
</div>
</header>
<br><br>
<aside>
<div id="navigation">
<br>
<nav id="desktopNav">
<ul>
<li class="navTopLevel"><a href="https://0xd0t.io/">Home</a></li>
<li class="navTopLevel"><a href="https://x.com/0xD0t">Blog</a></li>
<li class="navTopLevel"><a href="https://x.com/0xD0t">Socials</a></li>
<ul>
<li class="navBotLevel"><a href="https://x.com/0xD0t">X</a></li>
<li class="navBotLevel"><a href="https://discord.com/users/1233608132475748434">Discord</a></li>
</ul>
</li>
</ul>
</nav>
<nav id="mobileNav">
<div id="hamburger-icon" onclick="toggleMobileMenu(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
<ul class="mobile-menu">
<li class="navTopLevel"><a href="https://0xd0t.io/">Home</a></li>
<li class="navTopLevel"><a href="https://x.com/0xD0t">Blog</a></li>
<li class="navTopLevel"><a href="https://x.com/0xD0t">Socials</a></li>
<ul>
<li class="navBotLevel"><a href="https://x.com/0xD0t">X</a></li>
<li class="navBotLevel"><a href="https://discord.com/users/1233608132475748434">Discord</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
</aside>
<main>
<h2>Hi, I'm Dot ;></h2>
<br><br>
<marquee behavior="scroll" direction="left">
<span class="rainbow-lr"><em>🎵 pump it up 🎵 you got to pump it up 🎵 don't you know pump it up 🎵 pump it up 🎵 you got to pump it up 🎵 don't you know pump it up 🎵</em></span>
</marquee>
<br><br>
<iframe src="https://0xd0t.io/" style="width: 100%; height: 550px; border: none;"></iframe>
</main>
<footer>
<div id="rightSideGroup">
<br>
<div id="aboutMe">
<h4 class="sideHead">About Me</h4>
<p>
<strong class="pink">Name</strong>: D0t<br>
<strong class="pink">Age</strong>: 22<br>
<strong class="pink">Pronouns</strong>: re/tard<br>
</p>
</div>
<br>
<div id="blogFeed">
<h4 class="sideHead">Recent Blogs</h4>
<p>
<a href="blog/2024/genesis">09.13.2024 / Genesis</a><br>
</p>
</div>
<audio controls autoplay>
<source src="music/pampitap.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</footer>
</div>
<script src="mobileNav.js"></script>
</body>
</html>