-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSNES.html
More file actions
64 lines (64 loc) · 2.83 KB
/
SNES.html
File metadata and controls
64 lines (64 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SNES</title>
<link rel="stylesheet" href="style.css">
<style>
.container {
display: flex; /* Use flexbox layout */
flex-wrap: wrap; /* Allow wrapping to create multiple rows */
justify-content: center; /* Center items within the container */
background-color: #B2B4B2; /* Background color of the container */
text-align: left; /* Align text to the left */
width: 20%; /* Set the width of the container */
border-radius: 10px; /* Rounded corners */
border: 4px solid black; /* Border around the container */
margin-top: 10px; /* Space above the container */
}
</style>
</head>
<body>
<header>
<h1 style="color: rgb(0, 0, 0); text-align: center;">T's COLLECTION</h1> <!-- Main title of the page -->
</header>
<nav class="navbar">
<ul class="nav-list">
<li><a href="index.html" class="nav-link">Home</a></li> <!-- Link to Home page -->
<li><a href="about.html" class="nav-link">About Me</a></li> <!-- Link to About Me page -->
<li><a href="#contact" class="nav-link">Contact</a></li> <!-- Link to Contact section -->
<div class="dropdown">
<button class="dropbtn" aria-haspopup="true" aria-expanded="false">Platforms ▼</button> <!-- Dropdown button -->
<div class="dropdown-content"> <!-- Dropdown menu for platforms -->
<li><a href="Nintendo.html">Nintendo</a></li>
<li><a href="SNES.html">SNES</a></li>
<li><a href="Nintendo64.html">N64</a></li>
<li><a href="PlayStation2.html">PS2</a></li>
<li><a href="Playstation3.html">PS3</a></li>
<li><a href="Playstation4.html">PS4</a></li>
<li><a href="Playstation5.html">PS5</a></li>
<li><a href="wii.html">Wii</a></li>
<li><a href="wiiu.html">WiiU</a></li>
<li><a href="NintendoDS.html">DS</a></li>
<li><a href="Nintendo3DS.html">3DS</a></li>
<li><a href="switch.html">Switch</a></li>
<li><a href="MasterSystem.html">Master System</a></li>
</div>
</div>
</ul>
</nav>
<div class="thing">
<div class="container">
<ul>
<!-- List of games -->
<li>Mario Paint</li>
<li>Sims City</li>
</ul>
</div>
</div>
<footer class="footer">
<p style="text-align: center;">© 2025 Trevor Lord</p> <!-- Footer with copyright information -->
</footer>
</body>
</html>