-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en" data-theme="light">
<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" />
<meta name="title" content="Lazy Load Images" />
<meta name="description" content="Lazy Load Images by Saksham Gupta" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Lazy Load Images" />
<meta property="og:url" content="https://sakshamgupta.vercel.app/" />
<meta
property="og:description"
content="Lazy Load Images by Saksham Gupta"
/>
<meta
property="og:image"
content="https://sakshamgupta.vercel.app/assets/images/manOnTable.svg"
/>
<meta property="og:site_name" content="Lazy Load Images" />
<meta name="twitter:title" content="Lazy Load Images by Saksham Gupta" />
<meta
name="twitter:description"
content="Lazy Load Images by Saksham Gupta"
/>
<meta
name="twitter:image"
content="https://sakshamgupta.vercel.app/assets/images/manOnTable.svg"
/>
<title>Lazy Load Images</title>
<link rel="shortcut icon" href="/assets/favicon.ico" type="image/x-icon" />
<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=My+Soul&family=Open+Sans&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/styles/styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<header
class="header sticky top-0 z-2 flex justify-between items-center text-xl"
>
<p class="header__creator text-4xl">Saksham Gupta</p>
<div class="flex items-center">
<p id="theme-label" class="mr-6"></p>
<i id="theme-icon"></i>
<div class="ml-6">
<label class="switch">
<input type="checkbox" id="theme-switch" />
<span class="slider round"></span>
</label>
</div>
</div>
</header>
<section class="images__container" id="images__container"></section>
<script type="module" src="/scripts/index.js"></script>
</body>
</html>