-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exhausted Yami</title>
<link rel="icon" href="src/icons/icon.svg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<p>Exhausted Yami</p>
<div class="menu">
<a href="/">Home</a>
<a href="/portfolio">Portfolio</a>
<a href="/socials">Socials</a>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<div class="mobile-menu">
<a href="/">Home</a>
<a href="/portfolio">Portfolio</a>
<a href="/socials">Socials</a>
</div>
</nav>
<div class="content">
<h2>About Me</h2>
<P>Hello I'm Yami, I'm a 18-year-old content creator. I make gaming videos of whatever game I want to play (mainly Minecraft). <br> I also made a Discord Bot named UntitledPro bot.</P>
<hr>
<h2>Sponsored Ad</h2>
<section class="partner-banner">
<a href="https://bisecthosting.com/ExhaustedCraft">
<img src="src/images/BisectHostingPartnerBanner.webp" alt="Partner Banner">
</a>
</section>
</div>
<script data-name="BMC-Widget" data-cfasync="false" src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js" integrity="sha256-<hash_value>" data-id="ExhaustedYami" data-description="Support me on Buy me a coffee!" data-message="Donate to help create more content" data-color="#26B0A1" data-position="Right" data-x_margin="18" data-y_margin="18"></script>
<script>
const hamburger = document.querySelector('.hamburger');
const mobileMenu = document.querySelector('.mobile-menu');
hamburger.addEventListener('click', () => {
mobileMenu.classList.toggle('open');
});
</script>
</body>
</html>