-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 927 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width">
<title>Give me a GIF!</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<main><span class="loading">Loading...</span></main>
<footer>
<a href="#" class="arrow left" title="Previous">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<path
d="M7.8 13l4.428 4.428-1.4 1.4L4 12l6.828-6.828 1.4 1.4L7.8 11H20v2z"
/>
</svg>
</a>
<span class="pagination"></span>
<a href="#" class="arrow right" title="Next">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<path
d="M16.2 13l-4.428 4.428 1.4 1.4L20 12l-6.828-6.828-1.4 1.4L16.2 11H4v2z"
/>
</svg>
</a>
</footer>
</body>
<script src="js/script.js"></script>
</html>