-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
56 lines (56 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ottergram</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="stylesheets/styles.css">
</head>
<body>
<header class="main-header">
<h1 class="logo-text">ottergram</h1>
</header>
<main class="main-content">
<ul class="thumbnail-list">
<li class="thumbnail-item">
<a href="img/otter1.jpg" data-image-role="trigger" data-image-title="Stayin' Alive" data-image-url="img/otter1.jpg">
<img class="thumbnail-image" src="img/otter1.jpg" alt="Barry the Otter">
<span class="thumbnail-title">Barry</span>
</a>
</li>
<li class="thumbnail-item">
<a href="img/otter2.jpg" data-image-role="trigger" data-image-title="How Deep Is Your Love" data-image-url="img/otter2.jpg">
<img class="thumbnail-image" src="img/otter2.jpg" alt="Robin the Otter">
<span class="thumbnail-title">Robin</span>
</a>
</li>
<li class="thumbnail-item">
<a href="img/otter3.jpg" data-image-role="trigger" data-image-title="You Should Be Dancing" data-image-url="img/otter3.jpg">
<img class="thumbnail-image" src="img/otter3.jpg" alt="Maurice the Otter">
<span class="thumbnail-title">Maurice</span>
</a>
</li>
<li class="thumbnail-item">
<a href="img/otter4.jpg" data-image-role="trigger" data-image-title="Night Fever" data-image-url="img/otter4.jpg">
<img class="thumbnail-image" src="img/otter4.jpg" alt="Lesley the Otter">
<span class="thumbnail-title">Lesley</span>
</a>
</li>
<li class="thumbnail-item">
<a href="img/otter5.jpg" data-image-role="trigger" data-image-title="To Love Somebody" data-image-url="img/otter5.jpg">
<img class="thumbnail-image" src="img/otter5.jpg" alt="Barbara the Otter">
<span class="thumbnail-title">Barbara</span>
</a>
</li>
</ul>
<div class="detail-image-container">
<div class="detail-image-frame">
<img class="detail-image" data-image-role="target" src="img/otter1.jpg" alt="">
<span class="detail-image-title" data-image-role="title">Stayin' Alive</span>
</div>
</div>
</main>
<script src="scripts/main.js" charset="utf-8"></script>
</body>
</html>