-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (55 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en" class="overflow-x-hidden">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Notes | Home</title>
<!-- Tailwind stuff!!! -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- FontAwesome stuff!!! -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" /> -->
<!-- Local stuff!!! -->
<link rel="stylesheet" href="stylesheets/style.css">
<!-- Prismjs stuff!!! -->
<!-- <link rel="stylesheet" href="stylesheets/prism.css" />
<script src="scripts/prism.js"></script> -->
</head>
<body class="bg-slate-900 text-slate-400">
<!-- Hero Section -->
<div class="w-screen h-screen flex flex-col justify-center items-center">
<h1 class="text-6xl text-blue-500">Coding Notes</h1>
<p class="p-2 text-blue-800">A CheatSheet of Commonly used Snippites</p>
</div>
<hr class="mx-4 p-2" />
<main class="m-2 p-4">
<h2 class="text-2xl">Commonly Used Snippites Category</h2>
<div class="categories">
<div>
<a href="pages/git-github-snippts.html">
<div class="category p-4 border-cyan-700 border-8 bg-cyan-800">
<h2 class="text-lg font-black">Git & Github Automation</h2>
<p class="text-sm font-bold">here, you will find snipptes that automate git and github
workflows!!!</p>
</div>
</a>
</div>
</div>
</main>
<footer class="flex justify-center">
<a href="https://github.com/JeelDobariya38/Coding-Notes">
<div class="p-4 flex items-center gap-2">
<h2 class="text-lg font-black">Repository: </h2>
<p class="text-sm font-bold text-blue-500">JeelDobariya38/Coding-Notes</p>
</div>
</a>
<a href="https://raw.githubusercontent.com/JeelDobariya38/Coding-Notes/master/LICENSE.txt">
<div class="p-4 flex items-center gap-2">
<h2 class="text-lg font-black">License: </h2>
<p class="text-sm font-bold text-blue-500">MIT</p>
</div>
</a>
</footer>
</body>
</html>