-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMasterSystem.html
More file actions
74 lines (71 loc) · 2.98 KB
/
MasterSystem.html
File metadata and controls
74 lines (71 loc) · 2.98 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
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MasterSystem</title>
<link rel="stylesheet" href="style.css">
<style>
/* Styles for the container holding the game list */
.container {
display: flex;
flex-wrap: wrap; /* Allow wrapping to create multiple rows */
justify-content: center; /* Center child elements 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 for the container */
border: 4px solid black; /* Border around the container */
margin-top: 10px; /* Space above the container */
padding: 10px; /* Padding inside the container */
}
</style>
</head>
<body>
<header>
<!-- Main title of the page -->
<h1 style="color: rgb(0, 0, 0); text-align: center;">T's COLLECTION</h1>
</header>
<nav class="navbar">
<ul class="nav-list">
<!-- Navigation links -->
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link">About Me</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<div class="dropdown">
<button class="dropbtn" aria-haspopup="true" aria-expanded="false">Platforms ▼</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>Rambo: First Blood Part II</li>
<li>Time Soldiers</li>
<li>Wonder Boy in Monster Land</li>
</ul>
</div>
</div>
<footer class="footer">
<!-- Footer with copyright information -->
<p>© 2025 Trevor Lord</p>
</footer>
</body>
</html>