-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (118 loc) · 6.8 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en-us">
<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>Page Title</title>
<script src="https://kit.fontawesome.com/d23448af9d.js" crossorigin="anonymous"></script>
<link rel='stylesheet' href="src/styles/main.css">
<!-- googlefonts -->
<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=Figtree:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap" rel="stylesheet">
</head>
<body class="font-figtree">
<main class="bg-slate-200">
<div class="flex flex-row">
<div class="basis-6/12">
<div class="flex flex-row h-full pr-5 gap-8">
<div class="basis-2/12 self-center">
<div class="">
<div class="flex flex-col text-4xl font-serif py-16 pl-5 pr-9 bg-stone-100 rounded-r-3xl space-y-10 max-w-fit">
<a class="" href="#"><button>Home</button></a>
<a class="" href="#"><button>About</button></a>
<a class="" href="#"><button>Portfolio</button></a>
</div>
</div>
</div>
<div class="basis-10/12 self-center flex flex-col gap-y-2">
<div class="">
<div class="text-center flex flex-col gap-y-5">
<div class="">
<img class="rounded-full mx-auto" src="src/assets/images/profile-pic-sq.png" alt="face portrait of a male." />
</div>
<div class="flex flex-col gap-y-2">
<h1 class="text-3xl font-bold">Dencel Kadambethazhathu Babu</h1>
<h3 class="text-xl ">Passionate about technology. Loves music, travel and food! <br />Currently, In the process of learning web dev using The Odin Project</h3>
</div>
</div>
</div>
<section>
<div class="flex place-content-center w-full p-2">
<div>
<a href="" target="_blank">
<button
class="bg-white text-lightBlue-400 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-instagram"></i>
</button>
</a>
</div>
<div>
<a href="" target="_blank">
<button
class="bg-white text-lightBlue-400 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-github"></i>
</button>
</a>
</div>
<div>
<a href="" target="_blank">
<button
class="bg-white text-lightBlue-400 shadow-lg font-normal h-10 w-10 items-center justify-center align-center rounded-full outline-none focus:outline-none mr-2"
type="button">
<i class="fab fa-linkedin"></i>
</button>
</a>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="basis-6/12">
<div class="font-outfit flex flex-row h-full font-black text-9xl text-white ">
<div class="basis-1/4 group transition ease-in-out delay-150">
<a href="">
<div class="min-h-full h-screen relative bg-[#2C3E50]">
<p class="absolute bottom-0 right-3 group-hover:-translate-y-2 group-hover:scale-110 duration-300">1</p>
</div>
</a>
</div>
<div class="basis-1/4 group transition ease-in-out delay-150">
<a href="">
<div class="min-h-full relative bg-[#E74C3C]">
<p class="transition absolute bottom-0 right-3 group-hover:-translate-y-2 group-hover:scale-110 duration-300">2</p>
</div>
</a>
</div>
<div class="basis-1/4 group transition ease-in-out delay-150">
<a href="">
<div class="min-h-full relative bg-[#ECF0F1]">
<p class="transition absolute bottom-0 right-3 group-hover:-translate-y-2 group-hover:scale-110 duration-300">3</p>
</div>
</a>
</div>
<div class="basis-1/4 group transition ease-in-out delay-150 ">
<a class="" href="">
<div class="min-h-full relative bg-[#2980B9]">
<p class="absolute bottom-0 right-3 group-hover:-translate-y-2 group-hover:scale-110 duration-300">4</p>
</div>
</a>
</div>
</div>
</div>
</div>
</main>
<footer class="p-2 flex flex-col items-center">
<div class="text-center">
Made with <span class="fa-solid fa-heart" style="color: #db0000;"></span> using @tailwindcss, HTML5 & CSS3.
</div>
</footer>
<script src="src/main.js" type="module"></script>
</body>
</html>