-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (78 loc) · 4.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
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
<!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>MayPortifolio - Start Page</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" crossorigin="anonymous" />
</head>
<body>
<div class="flex flex-col lg:flex-row w-full h-screen bg-slate-900 p-10 space-y-5 lg:space-y-0 lg:space-x-5 text-white">
<nav class="w-full lg:w-2/6 2xl:w-1/5 h-24 lg:h-full flex flex-col space-y-5">
<div class="hidden lg:block w-full h-fit bg-slate-800 rounded-xl border-2 border-slate-600 p-5">
<picture class="flex flex-col items-center text-center space-y-5">
<img class="w-1/2 rounded-full border-2 border-slate-600 p-1" src="https://cdn.discordapp.com/attachments/718883307441487922/1117655953953800263/197705_zgFZXKtE.png" alt="Mayhm">
<div class="flex flex-col space-y-3">
<h1 class="text-4xl font-bold">Mayhm</h1>
<span class="italic text-slate-300">Writer, Font-End Developer, Designer in my spare time and 'artist' when i want | Attending the 3rd Semester of ADS at Biopark</span>
</div>
</picture>
</div>
<div class="h-fit bg-slate-800 rounded-xl border-2 border-slate-600 p-5 text-xl font-semibold text-center">
<ul class="space-y-3">
<li class="bg-slate-700 rounded-md py-2 border-2 border-slate-600">
<a class="flex block" href="#">
<div class="w-fit border-r-2 border-slate-600 px-5">
<i class="fa-solid fa-user"></i>
</div>
<div class="w-full text-center">
About
</div>
</a>
</li>
<li class="bg-slate-700 rounded-md py-2 border-2 border-slate-600">
<a class="flex block" href="#">
<div class="w-fit border-r-2 border-slate-600 px-5">
<i class="fa-solid fa-star"></i>
</div>
<div class="w-full text-center">
Projects
</div>
</a>
</li>
<li class="bg-slate-700 rounded-md py-2 border-2 border-slate-600">
<a class="flex block" href="#">
<div class="w-fit border-r-2 border-slate-600 px-5">
<i class="fa-solid fa-briefcase"></i>
</div>
<div class="w-full text-center">
Experience
</div>
</a>
</li>
<li class="bg-slate-700 rounded-md py-2 border-2 border-slate-600">
<a class="flex block" href="#">
<div class="w-fit border-r-2 border-slate-600 px-5">
<i class="fa-solid fa-trophy"></i>
</div>
<div class="w-full text-center">
Achivements
</div>
</a>
</li>
</ul>
</div>
<div class="hidden lg:block w-full h-full bg-slate-800 rounded-xl border-2 border-slate-600 p-5">
</div>
</nav>
<section class="flex flex-col w-full lg:w-4/6 2xl:w-4/5 h-full space-y-5">
<main class="w-full h-5/6 bg-slate-800 rounded-xl border-2 border-slate-600 scroll-x-auto">
</main>
<footer class="w-full h-1/6 bg-slate-800 rounded-xl border-2 border-slate-600">
</footer>
</section>
</div>
</body>
</html>