-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhulk.html
More file actions
39 lines (38 loc) · 1.48 KB
/
hulk.html
File metadata and controls
39 lines (38 loc) · 1.48 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>Hulk | 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-hulk">
<h1>Hulk / Bruce Banner</h1>
</div>
<section class="content">
<p>
Robert Bruce Banner, M.D., Ph.D., is a renowned scientist and a
founding member of the Avengers. As someone who was highly respected
for his work regarding biochemistry, nuclear physics, and gamma
radiation, he was commissioned by Thaddeus Ross to recreate the Super
Soldier Serum which created Captain America, although Ross elected not
to inform Banner what he was creating. However, when an exposure to
high levels of gamma radiation instead of vita radiation went awry,
the mild-mannered scientist had found that when angered, provoked or
excited, he would transform into the huge, rage-fueled, nearly
mindless creature known as Hulk.
</p>
</section>
</div>
</body>
</html>