-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (101 loc) · 4.64 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
<!DOCTYPE html>
<html amp lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<title>The Basement Gaming</title>
<link rel="stylesheet" href="styles.css">
<script async src="https://cdn.ampproject.org/v0.js"></script>
<script async custom-element="amp-bind" src="https://cdn.ampproject.org/v0/amp-bind-0.1.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
</style>
</head>
<body [class]="theme" class="dark-mode">
<header>
<div class="container">
<h1>The Basement Gaming</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#news">News</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" class="hero">
<div class="container">
<h2>Welcome to The Basement!</h2>
<p>Your hub for all things TF2 and Minecraft.</p>
</div>
</section>
<section id="games" class="section">
<div class="container">
<h2>Featured Games</h2>
<div class="game-list">
<div class="game">
<img src="images/tf2.jpg" alt="TF2 Game">
<h3>Team Fortress 2</h3>
<p>Experience the thrilling battles of TF2 with The Basement community. Join us now and dominate the battlefield!</p>
<div class="button-container2">
<button id="tf2" class="copy-domain-btn"><span>Copy Server Domain <span>(TF2)</span></span></button>
</div>
</div>
<div class="game">
<img src="images/minecraft.png" alt="Minecraft Game">
<h3>Minecraft</h3>
<p>Join us in Minecraft for an exciting Vanilla server experience with bedrock crossplay. Please Join the discord to get whitelisted</p>
<div class="button-container">
<button id="java" class="copy-domain-btn"><span>Copy Server Domain (Java)</span></button>
<button id="bedrock" class="copy-domain-btn"><span>Copy Server Domain (Bedrock)</span></button>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="community" class="section">
<div class="container">
<h2>Join Our Community</h2>
<div class="discord-widget-wrapper">
<iframe src="https://discord.com/widget?id=1226721803410341998&theme=dark" width="100%" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</div>
</section>
<section id="news" class="section">
<div class="container">
<h2>Latest News</h2>
<div class="news-list">
<div class="news-item">
<h3>Grand Opening!</h3>
<p>We're thrilled to announce the grand opening of our very own Minecraft server! Dive into a world of creativity, adventure, and endless possibilities. Whether you're a seasoned builder or a Minecraft newbie, our server is the perfect place to explore, create, and connect with fellow gamers.</p>
</div>
</div>
</section>
<section id="about" class="section">
<div class="container">
<h2>About Us</h2>
<p>The Basement Gaming is a community-driven platform dedicated to providing the best gaming experience for TF2 and Minecraft enthusiasts. Join us and be part of our growing family!</p>
</div>
</section>
<section id="contact" class="section">
<div class="container">
<h2>Contact Us</h2>
<p>If you have any questions or feedback, feel free to reach out to us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 The Basement Gaming. All rights reserved.</p>
<div class="footer">
<a href="tos.html">Terms of Service</a> | <a href="privacy.html">Privacy Policy</a>
</div>
</div>
</footer>
<div id="copy-notification">Link copied</div>
<script src="scripts.js" async></script>
</body>
</html>