-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcaptainamerica.html
More file actions
42 lines (41 loc) · 1.73 KB
/
captainamerica.html
File metadata and controls
42 lines (41 loc) · 1.73 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
<!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>Captain America | 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-captainamerica">
<h1>Captain America</h1>
</div>
<section class="content">
<p>
Captain Steven Grant "Steve" Rogers is a World War II veteran, a
founding member of the Avengers, and Earth's first known superhero.
Rogers had suffered from numerous health problems, and upon America's
entry into World War II, was rejected from military service despite
several attempts to enlist. Rogers was the only recipient of the Super
Soldier Serum developed by Abraham Erskine under the Strategic
Scientific Reserve. Determined to serve, Rogers ultimately volunteered
for the Project Rebirth, which enhanced the frail Rogers' body to the
peak of human physicality. Mistrusted by Colonel Chester Phillips, the
head of the SSR, Rogers was relegated to propaganda campaigns, and was
given the new moniker of Captain America. Rogers later joined the war
with a combat role after he single-handedly liberated captured Allied
prisoners of war.
</p>
</section>
</div>
</body>
</html>