generated from nighthawkcoders/student_2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiniProject.html
More file actions
58 lines (58 loc) · 2.65 KB
/
MiniProject.html
File metadata and controls
58 lines (58 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaming Blog</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
</head>
<body>
<header>
<div class="container">
<h1>Gaming Blog</h1>
<nav id="submenu">
<ul>
<li><a href="#games">Games</a></li>
<li><a href="#tips">Tips & Tricks</a></li>
<li><a href="#mods">Mods</a></li>
<li><a href="#community">Community</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="games">
<div class="container">
<h2>Games</h2>
<p>Minecraft: A block game with RNG generation of worlds in which players have to survive and beat the final boss, The Ender Dragon.<br/> Fortnite: A third-person shooter game in which players fight to be the last one standing.<br/> Roblox: An online gaming platform in which there are different user-made games where people can play.<br/> Brawl Stars: A 3v3 multiplayer and battle royale game in which players brawl for different goals to gain trophies.<br/> Valorant: A first person shooter game in which players fight against other players and gain ranks.</p>
</div>
</section>
<section id="tips">
<div class="container">
<h2>Tips & Tricks</h2>
<p>Enhance your gaming skills with these useful tips and tricks. Whether you're a novice or a pro, you'll find valuable advice to improve your gameplay.</p>
<button id="randomTipButton">Get Random Tip</button>
<p id="randomTip"></p>
</div>
</section>
<section id="mods">
<div class="container">
<h2>Mods</h2>
<p>Explore popular mods that can enhance and customize your gaming experience. Find mods for a variety of games and take your gameplay to the next level.</p>
</div>
</section>
<section id="community">
<div class="container">
<h2>Community</h2>
<p>Join the conversation with other gamers. Check out forums, social media groups, and other community resources to connect with fellow enthusiasts.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Gaming Blog. All rights reserved.</p>
</div>
</footer>
<script src="miniproject.js"></script> <!-- Link to your JavaScript file -->
</body>
</html>