-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (74 loc) · 2.22 KB
/
index.html
File metadata and controls
75 lines (74 loc) · 2.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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>Home | Final Web Dev 1 Project</title>
<link
href="https://fonts.googleapis.com/css?family=Macondo+Swash+Caps"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<!-- Ryan Lasher - Final Web Dev 1 Project -->
</head>
<body>
<div class="wrapper">
<nav id="top">
<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="big-hero">
<h1>Welcome to the home of the Big Marvel Heroes!</h1>
</div>
<div class="home-content">
<section class="content smaller-image">
<p>
<a href="thor.html"> <img src="images/thor.jpg" alt="Thor"/></a>
<caption>
<em>Thor</em>
</caption>
</p>
</section>
<section class="content smaller-image">
<p>
<a href="ironman.html">
<img src="images/ironman.jpg" alt="Iron Man/Tony Stark"
/></a>
<caption>
<em>Iron Man / Tony Stark</em>
</caption>
</p>
</section>
<section class="content smaller-image">
<p>
<a href="hulk.html">
<img
src="images/professorhulk.jpg"
alt="Professor Hulk/Bruce Banner"
/></a>
<caption>
<em>Hulk / Bruce Banner</em>
</caption>
</p>
</section>
<section class="content smaller-image">
<p>
<a href="captainamerica.html">
<img
src="images/captain-america.png"
alt="Captain America/Steve Rogers"
/></a>
<caption>
<em>Captain America / Steve Rogers</em>
</caption>
</p>
</section>
<p><a href="#top">Go to top</a></p>
</div>
</div>
</body>
</html>