-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
57 lines (56 loc) · 2.03 KB
/
about.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>
About
</title>
</head>
<style type="text/css">
body {
background-color: black;
}
p {
color: lightgrey;
font-size: 16px;
}
li {
float: left;
width: 25%;
text-decoration: none;
font-size: 20px;
}
li a {
display: block;
text-decoration: none;
color: lightgrey;
}
</style>
<body>
<figure >
<img src="./resources/shield.jpg" style="float: left; width: 60px; height: 60px;" alt = "Shield Image here" title="Shield">
</figure>
<h1 style="text-align: center; color: lightgrey"><b><u>About Captain America</u></b></h1>
<br>
<hr>
<nav class="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="movie_series.html">Movie series</a></li>
<li><a href="facts.html">Facts</a></li>
<li><a href="photos.html">Photos</a></li>
</ul>
</nav>
<hr>
<div>
<div style="float: left;">
<p>From 1943 to 1945, Rogers had attacked multiple HYDRA bases alongside his own team, <br> the Howling Commandos, in an attempt to capture the Red Skull, and recover the Tesseract. <br>His famous World War II exploits had made him a living legend, and during this time he formed<br> a relationship with agent Peggy Carter. Despite seemingly losing his closest best friend and<br> loyal teammate, Bucky Barnes, during a mission, Rogers carried on to help the Allies win the<br> war, but crashed into the Arctic during his final mission. His close friend Howard Stark spent<br> time looking for his body. Rogers then spent nearly 70 years encased in ice in suspended<br> animation before he was found by S.H.I.E.L.D. in the early 21st century. <br><br><br> <a href="https://en.wikipedia.org/wiki/Captain_America">Click here</a> to go to the Wikipedia page of Captain America
</p>
</div>
<figure style="float: right;">
<img src="./resources/run.jpg" title="Captain America">
<figcaption style="color: white;">Captain America</figcaption>
</figure>
</div>
</body>
</html>