-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 2.14 KB
/
Copy pathindex.html
File metadata and controls
46 lines (42 loc) · 2.14 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
44
45
46
<!DOCTYPE html>
<html lang="en-us" data-theme="">
<head>
<!--G_--------------{ Meta Code's }---------------_-->
<meta charset="UTF-8">
<meta name="description" content="Learn Javascript and try to solve Leet Code Questions">
<meta name="keywords" content="Javascript, typescript, Leet Code">
<meta name="author" content="Bisakto-Rahi">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="robots" content="INDEX, FOLLOW">
<!--W_---------------{ Create Date : 28/02/2026 }---------------_-->
<!--W_---------------{ Last Update : 03/03/2026 }---------------_-->
<title>
LeetCode Journey
</title>
<!--I_---------------{ Added Favicon }---------------_-->
<link rel="icon" href="./assets/favicon.png" type="image/x-icon">
<!--I_---------------{ My Style Sheet CDN }---------------_-->
<link rel="stylesheet" href="./style.css">
<!--I_---------------{ Font Awesome Pro-icon CDN }---------------_-->
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.6.0/css/all.css">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.6.0/css/sharp-thin.css">
</head>
<body>
<!--I_---------------{ Heading }----------------->
<div class="text-center my-2">
<h1 class="text-sky-800 text-3xl sm:text-3xl md:text-5xl font-bold">
My LeetCode Journey
</h1>
<p class="text-gray-500 mt-2 font-semibold text-xs sm:text-sm md:text-md lg:text-lg mx-4">
Organized daily problem solving journey ~ Questions & Solutions by Day
</p>
</div>
<i class="mx-2 text-xs sm:text-sm md:text-md text-gray-400">Started on 28/02/2026</i>
<div class="m-4 sm:m-6 grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 xl:grid-cols-8 gap-2 sm:gap-4" id="days"></div>
<!--I_---------------{ Tailwind CSS CDN }---------------_-->
<script src="https://cdn.tailwindcss.com"></script>
<!--I_---------------{ My Java Script CDN }---------------_-->
<script src="./index.js"></script>
</body>
</html>