-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Wreck-it Ralph</title>
<link rel="icon" href="img/ralph-avatar.jpeg">
<link rel="stylesheet" type="text/css" href="css/hero.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<header>
<!--header element-->
<img src="img/ralph-avatar.jpeg">
<h1>Wreck-it Ralph</h1>
</header>
<!-- main element -->
<body>
<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 that he's a good guy</p>
<img src="img/ralph-big.jpeg">
<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>
<h2>Ralph's Friends</h2>
<p>Ralph has some awesome friends. I think his best friend is Glitch. She's awesome.</p>
<ul>
<li><a target="_blank" href="https://en.wikipedia.org/wiki/Pac-Man">PacMan</a></li>
<li><a target="_blank" href="https://en.wikipedia.org/wiki/Mario">Mario</a></li>
<li><a target="_blank" href="https://en.wikipedia.org/wiki/Luigi">Luigi</a></li>
</ul>
</main>
<!-- Footer Element -->
<footer>
<p>This site was created during a Tap Tap Boom class. © Bill</p>
</footer>
</body>
</html>