-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (46 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wreck-it Ralph</title>
<link rel="icon" href="img/ralph-avatar.jpeg">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/hero.css">
</head>
<body>
<!-- header element -->
<header>
<img src="img/ralph-avatar.jpeg">
<h1>Wreck-it Ralph</h1>
</header>
<!-- main element -->
<main>
<h2>About Ralph</h2>
<p>Ralph is awesome! He's an 8-bit videogame bad guy who travels the length of the arcade to prove he's a good guy.</p>
<img src="img/ralph-big.jpg">
<p class="caption">Ralph and his friends</p>
<!-- Characteristics -->
<h2>Ralph's Characteristics</h2>
<ol>
<li>He's got big hands</li>
<li>He's treated as bad-ass</li>
<li>He's trying to be a good guy</li>
</ol>
<!-- Friends -->
<h2>Ralph's Friends</h2>
<p>Ralph has some awesome friends. I think his best friend is Glitch. She's awesome. Click on the links below to read more about them:</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Pac-Man">Pac-Man</a></li>
<li><a href="https://en.wikipedia.org/wiki/Mario">Mario</a></li>
<li><a href="https://en.wikipedia.org/wiki/Luigi">Luigi</a></li>
<li><a href="https://disney.fandom.com/wiki/Vanellope_von_Schweetz">Vanellope von Schweetz A.K.A Glitch</a></li>
</ul>
</main>
<!-- Footer element -->
<footer>
<p>This site was created during a Tap Tap Kaboom class. © Luis Vidal</p>
</footer>
</body>
</html>