-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
55 lines (40 loc) · 2.06 KB
/
base.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ahson's portfolio.</title>
<link rel="stylesheet" href="./output.css">
<link rel="stylesheet" href="./stars.css">
<script src="./navbar.js"></script>
<script src="https://kit.fontawesome.com/41f082f35d.js" crossorigin="anonymous"></script>
</head>
<body class="font-mono text-white bg-black ">
<div class="absolute top-[-100vh]">
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
</div>
<nav class="w-full mt-16 flex items-center justify-between md:justify-center px-6 md:px-12">
<!-- Menu Button (cutesy wala) -->
<button id="menu-btn" class="md:hidden focus:outline-none">
<svg class="w-6 h-6 relative z-[10000] text-blue-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
<!-- Unified Menu (minimalistic wala) -->
<ul id="menu" class="md:!opacity-100 ease-in-out duration-300 z-[1000] animate-fade-to-grey md:!bg-transparent top-0 justify-center transition-all absolute left-0 w-full flex flex-col h-full text-blue-400 font-medium lowercase md:flex md:flex-row md:static md:space-x-8 md:py-0 items-center text-lg md:font-bold md:w-auto">
<li><a href="./index.html" class="hover:text-blue-300">home</a></li>
<li><a href="./projects.html" class="hover:text-blue-300 ">projects</a></li>
<li><a href="https://techsleekblogs.vercel.app" class="hover:text-blue-300">blog</a></li>
<li><a href="./comingsoon.html" class="hover:text-blue-300">journal</a></li>
<li><a href="./comingsoon.html" class="hover:text-blue-300">notes</a></li>
</ul>
</nav>
<section class=" mt-12 mb-12">
<div class="holder">
<h1>[INSERT CONTENT HERE]</h1>
</div>
</section>
</body>
</html>