-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 994 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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinite Scroll</title>
<link rel="icon" type="image/png" href="favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;500;600;700&display=swap" rel="stylesheet">
<!-- Old Favicon - Grab Icon From Google (Might be unsupported in the future) -->
<link rel="icon" type="image/png" href="https://s2.googleusercontent.com/s2/favicons?domain=jacinto.design">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Title -->
<h1>Infinite Dogs</h1>
<p>Powered by Unsplash API</p>
<!-- Loader -->
<!-- <div class="loader" id="loader" >
<img src="loader.svg" alt="Loading" >
</div> -->
<!-- Image -->
<div class="image-container" id="image-container">
</div>
<!-- Script -->
<script src="./script.js"></script>
</body>
</html>