-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.05 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>
Captain America
</title>
</head>
<style type="text/css">
li {
float: left;
width: 25%;
text-decoration: none;
font-size: 20px;
}
li a {
display: block;
text-decoration: none;
color: lightgrey;
}
body{
background-color: black;
}
</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>Captain America</u></b></h1>
<br>
<hr>
<nav class="nav">
<ul>
<li><a href="about.html">About</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>
<figure >
<img src="./resources/character.jpg" style="float: center; width: 100%;" alt="Captain America" title="Captain America" >
</figure>
</body>
</html>