-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.16 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.16 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
<!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=Kumbh+Sans:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Kufam:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>
Infinite
<input
type="text"
name="query"
class="query"
id="query"
placeholder="nature"
autocomplete="off"
/>
</h1>
<p class="subtitle">What infinity do you want? 👆🏻</p>
</header>
<!-- Loader -->
<div class="loader" id="loader">
<img src="loader.svg" alt="loader" />
</div>
<!-- Images -->
<div class="image-container" id="image-container"></div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>