-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
41 lines (35 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Slides</title>
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, verdana, sans-serif;
padding: 5em;
max-width: 90ex;
}
footer, link, a {
color: #666;
font-size: .7em;
}
</style>
</head>
<body>
<main>
<img src="img/dog.jpg" data-slides="['img/cat.jpg', 'img/fish.jpg', 'img/frog.jpg', 'img/dog.jpg']" />
</main>
<footer>
<p>Dog by <a href="https://www.flickr.com/photos/a_peach/">A_Peach</a></p>
<p>Cat by <a href="https://www.flickr.com/photos/130799750@N03/">Mohamed Aymen Bettaieb</a></p>
<p>Fish by <a href="https://www.flickr.com/photos/24931020@N02/">Ozzy Delaney</a></p>
<p>Frog by <a href="https://www.flickr.com/photos/bfs_man/">BFS Man</a></p>
<p>
<img src="img/cc.svg" height="16px" />
<img src="img/by.svg" height="16px" />
<a href="https://creativecommons.org/licenses/by/2.0/"><span>Some rights reserved</span></a></p>
</footer>
<script src="slides.js"></script>
</body>
</html>