-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en" class="hidden md:block">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Subhramit's Blog</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<!-- Nav Bar -->
<nav class="bg-uno text-white flex gap-6 h-13">
<ul class="flex justify-evenly w-full">
<a href="./index.html"><li class="py-auto cursor-pointer hover:bg-tres py-4 px-2">Home</li></a>
<a href="./about.html"><li class="py-auto cursor-pointer hover:bg-tres py-4 px-2">About me</li></a>
<a href="./stories.html"><li class="py-auto cursor-pointer hover:bg-tres py-4 px-2">Thoughts & Stories</li></a>
<a href="./poetry.html"><li class="py-auto cursor-pointer hover:bg-tres py-4 px-2">Poetry</li></a>
<a href="./recommendations.html"><li class="py-auto cursor-pointer hover:bg-tres py-4 px-2">Recommendations</li></a>
<a href="./contact.html"><li class="py-auto cursor-pointer hover:bg-tres py-4 px-2">Contact</li></a>
</ul>
</nav>
<!-- Body -->
<main class="bg-quad flex justify-around">
<div class="main py-96 pl-56 max-w-6xl">
<div class="text-6xl font-serif">Subhramit's Blog</div>
<div>
<p class="py-3 w-1/2 pl-1 font-serif">
The aurors are on their way.
</p>
<div class="buttons my-4">
<a href="./about.html"><button class="bg-uno px-3 py-2 rounded-xl text-white hover:text-white hover:bg-tres mx-2">Board the train</button></a>
</div>
</div>
</div>
<div class="flex items-center">
<img src="./assets/window.jpg" class="rounded-full h-80 mr-72" alt="">
</div>
</main>
</body>
<hr>
<footer class="text-center bg-uno text-white">
<div class="flex justify-center"><a rel="license" href="https://opensource.org/licenses/MIT/" class="hover:text-quad">MIT License</a>. Copyright © 2023 Subhramit Basu Bhowmick</div>
<div class="flex justify-center"></div>
</footer>
</html>