-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththor.html
More file actions
39 lines (38 loc) · 1.5 KB
/
thor.html
File metadata and controls
39 lines (38 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Thor | Final Web Dev 1 Project</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
<nav>
<a href="index.html">Home</a>
<a href="thor.html">Thor</a>
<a href="ironman.html">Iron Man</a>
<a href="hulk.html">Hulk</a>
<a href="captainamerica.html">Captain America</a>
</nav>
<div class="jumbotron-thor">
<h1>Thor</h1>
</div>
<section class="content">
<p>
Thor Odinson is the former king of Asgard and New Asgard, a founding
member of the Avengers, and the God of Thunder. When his irresponsible
and impetuous behavior reignited a conflict between Asgard and
Jotunheim, Thor was denied the right to become king, stripped of his
power, and banished by his father Odin to Earth. While exiled on
Earth, Thor learned humility, finding love with Jane Foster, and
helping to save his new friends from a destructive threat sent by his
adoptive brother Loki. Due to his selfless act of sacrifice, Thor
redeemed himself in his father's eyes and was granted his power once
more, which he then used to defeat Loki's schemes of genocide.
</p>
</section>
</div>
</body>
</html>