-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 2.52 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 2.52 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">
<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">
<title>AKBS</title>
<meta name="robots" content="noindex, nofollow">
<script src="https://cdn.tailwindcss.com"></script>
<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=Kanit:wght@900&family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<nav
class="absolute flex w-full text-[1rem] text-center text-gray-400 font-['Open_Sans'] justify-between align-center font-bold p-4">
<a href="index.html" class="transition-all duration-1000 hover:text-white w-full hover:translate-y-[-0.25rem]">HOME</a>
<a href="docs.html" class="transition-all duration-1000 hover:text-white w-full hover:translate-y-[-0.25rem]">DOCS</a>
<a href="aboutme.html" class="transition-all duration-1000 hover:text-white w-full hover:translate-y-[-0.25rem]">ABOUT ME</a>
</nav>
<div class="bg-gray-900 w-full h-[100vh] flex justify-center items-center">
<div
class="p-[3rem] bg-[#0023] rounded-[2rem] border-[#0ff] border-[1rem] text-center text-white flex justify-center items-center flex-col shadow-lg shadow-[#0ee] transition-[transform] hover:scale-125 duration-1000">
<h1 class="font-[Kanit] text-[3.5rem] ">
AKBS
</h1>
<p class="font-['Open_Sans'] text-[1.5rem]">The <strong>A</strong>ll-<strong>K</strong>nowing
<strong>B</strong>uild <strong>S</strong>ystem
<br><span class="text-[1rem]">for C, C++ and Assembly</span>
</p>
<a href="https://github.com/AaravMalani/akbs" class="m-1"><img
src="https://img.shields.io/badge/Github-181717?logo=github&style=for-the-badge"
class="w-[7.5rem]" /></a>
<a href="https://marketplace.visualstudio.com/items?itemName=AaravMalani.akbs"><img
src="https://img.shields.io/badge/VSCode-007ACC?logo=visualstudiocode&style=for-the-badge"
class="w-[7.5rem]" /></a>
<a href="https://pypi.org/project/akbs/" class="m-1"><img
src="https://img.shields.io/badge/PyPI-3775A9?logo=pypi&style=for-the-badge&logoColor=white"
class="w-[7.5rem]" /></a>
</div>
</div>
</body>
</html>