-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgamecollecting.html
More file actions
73 lines (73 loc) · 3.09 KB
/
gamecollecting.html
File metadata and controls
73 lines (73 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Collecting</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Oxanium:wght@200..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 style="text-align: center;">Game Collecting</h1>
<nav>
<ul>
<li><a href="index.html"><strong>Home</strong></a></li>
<li><a href="travel_highlights.html"><strong>Travels</strong></a></li>
<li><a href="hobbies.html"><strong>Hobbies</strong></a></li>
<li><a href="miscellaneous.html"><strong>Miscellaneous</strong></a></li>
</ul>
</nav>
<div class="home-row">
<a href="game collecting/everynintendohomeconsole.html">
<figure>
<img
src="images/mycollection.png" alt="A picture of every Nintendo home console I own"
width="750" height="675" class="homebutton">
<figcaption style="text-align: center;">Every Nintendo home console generation</figcaption>
</figure>
</a>
<a href="game collecting/mattelintellivision.html">
<figure>
<img
src="images/intellivisionii.png" alt="A picture of a Mattel Intellivision II console"
width="750" height="675" class="homebutton">
<figcaption style="text-align: center;">Mattel Intellivision II</figcaption>
</figure>
</a>
<a href="game collecting/punchout.html">
<figure>
<img
src="images/punchout.jpg" alt="A picture of a Mike Tyson's Punch-Out!! cartridge"
width="750" height="675" class="homebutton">
<figcaption style="text-align: center;">Mike Tyson's Punch-Out!!</figcaption>
</figure>
</a>
<a href="game collecting/dkbongos.html">
<figure>
<img
src="images/dkbongos.jpg" alt="A picture of Donkey Kong Bongos alongside Donkey Konga"
width="750" height="675" class="homebutton">
<figcaption style="text-align: center;">Donkey Kong Bongos</figcaption>
</figure>
</a>
<a href="game collecting/wiichess.html">
<figure>
<img
src="images/wiichess.jpg" alt="A picture of Wii Chess"
width="750" height="675" class="homebutton">
<figcaption style="text-align: center;">Wii Chess</figcaption>
</figure>
</a>
<a href="game collecting/japanconsoles.html">
<figure>
<img
src="images/japanconsoles.jpg" alt="A picture of a Japanese Wii, DS Lite, DSi, and New 3DS"
width="750" height="675" class="homebutton">
<figcaption style="text-align: center;">Japanese-imported consoles</figcaption>
</figure>
</a>
</div>
</body>
</html>