-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (55 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<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=Exo+2&family=Luxurious+Roman&display=swap"
rel="stylesheet"
/>
<style>
body {
margin: 0;
-webkit-font-smoothing: antialiased;
}
.font-exo {
font-family: "Exo 2", sans-serif;
}
.font-timesroman {
font-family: "Luxurious Roman", cursive;
}
</style>
</head>
<body>
<div id="app">
<div
class="absolute text-white text-center"
style="top: 50%; transform: translate(-50%, -50%); left: 50%"
>
<h1 class="font-timesroman text-5xl uppercase my-4">Atharva Shinde</h1>
<p class="font-exo text-4xl">
FRONTEND DEVELOPER & BLOCKCHAIN ENTHUSIAST
</p>
<p class="font-exo text-3xl">EVERYTHING IS CONNECTED</p>
<a
href="https://www.linkedin.com/in/atharva-shinde-111b241b3/"
target="_blank"
class="border px-4 py-2 rounded-lg font-timesroman uppercase mt-12 hover:bg-white hover:text-black inline-block"
>LinkedIn</a
>
<a
href="https://github.com/atharvashinde01"
target="_blank"
class="border px-4 py-2 rounded-lg font-timesroman uppercase mt-12 hover:bg-white hover:text-black inline-block mx-4"
>GitHub</a
>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>