-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 1.83 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
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Template</title>
<link rel="icon" type="image/png" href="./image/favIcon.jpeg" />
<!-- font awesome icon -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- googel fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;600;800&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- Go To Github Section, -->
<section class="go_to_github">
<div class="btn">
<a href="https://github.com/hasan-naim/Infinite-scroll-with-js" target="blank">Github <i class="fa-brands fa-github"></i></a>
</div>
<i class="fa-solid fa-circle-chevron-up"></i>
</section>
<!-- header for this project -->
<header>
<h1>Unsplash Api <span>Infinite Scroll</span></h1>
</header>
<!-- loader -->
<div class="loader" id="loader">
<img src="./image/loading.svg" alt="Loading">
</div>
<!-- Image container -->
<div class="image-container" id="image-container">
</div>
<!-- Script -->
<script src="./script.js"></script>
</body>
</html>