This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (94 loc) · 4.06 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
111
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>ThaSauce Albums</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/style.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<header class="container masthead">
<div class="row">
<div class="twelve columns">
<h1>ThaSauce Albums</h1>
</div>
</div>
</header>
<div class="card">
<div class="container">
<div class="row">
<div class="three columns">
<a href="http://missmight.thasauce.net">
<img class="album-cover" src="images/miss_might_cover.png" alt="Miss Might Anniversary Collection" />
Miss Might Anniversary Collection
</a>
</div>
<div class="three columns">
<a href="space_crusade/">
<img class="album-cover" src="images/space_crusade_cover.png" alt="Commodore Crush's Space Crusade" />
Commodore Crush's Space Crusade OST
</a>
</div>
<div class="three columns">
<a href="http://wonderwall.thasauce.net/">
<img class="album-cover" src="images/wonderwall_cover.png" alt="Anyway, Here's Wonderwall" />
Anyway, Here's Wonderwall
</a>
</div>
<div class="three columns">
<a href="fasto2/">
<img class="album-cover" src="images/fasto2_cover.png" alt="Fasto the Speedhog 2 OST" />
Fasto the Speedhog 2 OST
</a>
</div>
</div>
<div class="row">
<div class="three columns">
<a href="remixville/">
<img class="album-cover" src="images/remixville_cover.png" alt="ReMixVille" />
ReMixVille
</a>
</div>
<div class="three columns">
<a href="duckhunt2010/">
<img class="album-cover" src="images/duckhunt2010_cover.png" alt="Duck Hunt HD" />
Duck Hunt HD
</a>
</div>
<div class="three columns">
<a href="sml2/">
<img class="album-cover" src="images/sml2_cover.png" alt="Super Mario Land 2: Tremendous Achievement" />
Super Mario Land 2: Tremendous Achievement
</a>
</div>
<div class="three columns">
<a href="rofl/">
<img class="album-cover" src="images/duckhunt_cover.png" alt="Duck Hunt: Repurcussions of Fowl Lamentations" />
Duck Hunt: Repurcussions of Fowl Lamentations
</a>
</div>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>