-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathironman.html
More file actions
43 lines (42 loc) · 1.79 KB
/
ironman.html
File metadata and controls
43 lines (42 loc) · 1.79 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
40
41
42
43
<!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>Iron Man | 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-ironman">
<h1>Iron Man / Tony Stark</h1>
</div>
<section class="content">
<p>
Anthony Edward "Tony" Stark was a billionaire industrialist, a
founding member of the Avengers, and the former CEO of Stark
Industries, a company originally started by his father, Howard Stark.
A brash but brilliant inventor, Stark was self-described as a genius,
billionaire, playboy and philanthropist. With his great wealth and
exceptional technical knowledge, Stark was one of the world's most
powerful men, and enjoyed the playboy lifestyle for many years until
he was kidnapped by the Ten Rings in Afghanistan, while demonstrating
a fleet of Jericho missiles. With his life on the line, Stark created
an armored suit which he used to escape his captors, returning home
and becoming known as an Iron Man, battling against terrorists as well
as Obadiah Stane. Stark enjoyed the fame that came with his new secret
identity and decided to share it with the world, publicly announcing
himself as Iron Man.
</p>
</section>
</div>
</body>
</html>