-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Bebas+Neue&family=Oswald:[email protected]&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
<title>infinity scroll</title>
</head>
<body>
<div>
<h1 class="text-[4rem] ml-[30rem] font-Bebas font-semibold mt-[2rem] mb-[1rem]">
INFINITY SCROLL
</h1>
<div class="loader ml-[36rem] mt-[8rem]">
<img class="w-[10rem] h-[10rem]" src="loader.svg" alt="Loading..." />
</div>
<div class="img-container ml-[35%] grid grid-flow-row gap-4"></div>
</div>
<script src="app.js"></script>
</body>
</html>