-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (45 loc) · 1.65 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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon_io/favicon-16x16.png">
<link rel="manifest" href="./favicon_io/site.webmanifest">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.css">
<link rel="stylesheet" href="style.css">
<title>infinite Scroll</title>
</head>
<body>
<div class="copyRight">
<i class="fa-regular fa-registered"></i>
<span>  Danilo 2022</span>
</div>
<!-- Title -->
<h1>
Unsplash API - Infinite Scroll <br>
Christmas Theme
</h1>
<!-- get api key -->
<div id="api-container">
<form class="api-text" id="api-form">
<label for="api">get an unSplash's API key to start</label>
<input type="text" name="api" id="api">
<button>go!</button>
</form>
<p class="api-text">if you don't know how to get an API</p>
<a class="api-text" href="https://unsplash.com/developers">check this</a>
</div>
<!-- loader -->
<div class="loader" id="loader" hidden>
<img src="loader.svg" alt="Loading">
</div>
<!-- img container -->
<div class="img-container" id="img-container">
</div>
<!-- script -->
<script src="script.js"></script>
</body>
</html>