-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (57 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Photos of People</title>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<!-- <script src="access.js" charset="utf-8" defer></script> -->
<script src="addContent.js" charset="utf-8" defer></script>
</head>
<body>
<header>
<h1 class="site-title">Photos of People</h1>
</header>
<nav class="navbar">
<ul class="navlist">
<li class="navitem"><a href="#">Home</a></li>
<li class="navitem"><a href="#">People</a></li>
<li class="navitem right"><a href="#">Login</a></li>
</ul>
</nav>
<main id="photo-card-container">
<section class="photo-card">
<div class="img-container">
<img class="person-photo-img" src="https://vignette3.wikia.nocookie.net/starwars/images/6/62/LukeGreenSaber-MOROTJ.png" />
</div>
<div class="caption">
Luke ready to fight.
</div>
</section>
<section class="photo-card">
<div class="img-container">
<img class="person-photo-img" src="http://esq.h-cdn.co/assets/15/43/980x490/landscape-1445356666-star-wars-luke-skywalker-tatooine.jpg" />
</div>
<div class="caption">
Luke looking pensive.
</div>
</section>
<section class="photo-card">
<div class="img-container">
<img class="person-photo-img" src="https://oyster.ignimgs.com/mediawiki/apis.ign.com/star-wars-episode-7/2/2d/Luke.jpg" />
</div>
<div class="caption">
Luke giving a buddy a lift.
</div>
</section>
<section class="photo-card">
<div class="img-container">
<img class="person-photo-img" src="http://vignette3.wikia.nocookie.net/starwars/images/1/15/Luke_Skywalker_Ep_7_SWCT.png" />
</div>
<div class="caption">
An older Luke.
</div>
</section>
</main>
</body>
</html>