-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnes.html
52 lines (50 loc) · 1.53 KB
/
snes.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
<!doctype html>
<html>
<head>
<title>Super Nintendo | Emul8Me</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body>
<dyn-header></dyn-header>
<main>
<section>
<h2>Super Nintendo Entertainment System</h2>
<p>
The Super Nintendo Entertainment System (SNES) is a 16-bit home video
game console developed by Nintendo, known for its vast library of
iconic games and enduring influence on the gaming industry.
</p>
</section>
<section class="games">
<a class="btn" href="/snes/smw.html"
><img
src="https://upload.wikimedia.org/wikipedia/en/3/32/Super_Mario_World_Coverart.png"
alt="Cover Art"
/></a>
<a class="btn" href="/snes/smw2.html"
><img
src="https://upload.wikimedia.org/wikipedia/en/9/9a/Yoshi%27s_Island_%28Super_Mario_World_2%29_box_art.jpg"
alt="Cover Art"
/></a>
<a class="btn" href="/snes/smk.html"
><img
src="https://upload.wikimedia.org/wikipedia/en/3/38/Supermariokart_box.JPG"
alt="Cover Art"
/></a>
<a class="btn" href="/snes/eb.html"
><img
src="https://upload.wikimedia.org/wikipedia/en/1/1f/EarthBound_Box.jpg"
alt="Cover Art"
/></a>
</section>
</main>
<dyn-footer></dyn-footer>
<script src="./headerfooter.js"></script>
</body>
<style>
.games img {
width: 400px;
height: 250px;
}
</style>
</html>