-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (100 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>some-portfolio</title>
</head>
<body>
<div class="w-screen p-3 uppercase font-medium">
<img src="img/title.png" alt="">
<div id="menu" class="flex w-full h-max justify-between">
<div id="date-time" class="text-[22px] font-bold">
<div id="date"></div>
<div id="time"></div>
</div>
<div id="proj" class="underline">
<p>projects</p>
<p>timeline</p>
</div>
<div id="info" class="underline">
<p>about</p>
<p>contact</p>
</div>
<div id="links" class="underline">
<p>credits</p>
<p><a href="https://aino.agency" target="_blank">aino.agency</a></p>
<p><a href="https://unsplash.com" target="_blank">photopea</a></p>
</div>
</div>
<div id="preview" class="grid grid-cols-2 w-full h-full justify-evenly">
<div class="p-1">
<p class="absolute text-[20px] bg-white/10 pl-2">no name</p>
<img src="img/bill.jpg" alt="">
</div>
<div class="p-1">
<p class="absolute text-[20px] bg-white/10 pl-2">no name</p>
<img src="img/falls.jpg" alt="">
</div>
<div class="p-1">
<p class="absolute text-[20px] bg-white/10 pl-2">no name</p>
<img src="img/hall.jpg" alt="">
</div>
<div class="p-1">
<p class="absolute text-[20px] bg-white/10 pl-2">no name</p>
<img src="img/window.jpg" alt="">
</div>
</div>
<div id="hire-me" class="flex flex-col bg-black text-white items-center justify-center mt-2 p-3">
<div class="flex w-full h-max text-center p-2">
<p class="w-full h-full text-[22px]">hire me</p>
</div>
<div class="flex w-full h-full p-1 items-center justify-center">
<div class="flex w-[250px] h-full p-1 border-2 border-white">
<img src="img/window.jpg" alt="profile">
</div>
<div class="flex flex-col w-[250px] h-full ml-2 p-1 justify-center">
<p>info</p>
<p>contact</p>
</div>
</div>
</div>
<div id="timeline" class="flex flex-col w-full h-full p-4 text-center justify-center">
<div class="w-full h-max text-[22px]">Timeline</div>
<div class="flex w-full h-max justify-evenly hover:bg-black hover:text-white">
<p>project_name</p>
<p>year-</p>
<p>location</p>
</div>
<div class="flex w-full h-max justify-evenly hover:bg-black hover:text-white">
<p>project_name</p>
<p>year-</p>
<p>location</p>
</div>
<div class="flex w-full h-max justify-evenly hover:bg-black hover:text-white">
<p>project_name</p>
<p>year-</p>
<p>location</p>
</div>
</div>
<div id="footer" class="flex flex-col bg-black text-white p-3 mt-2">
<p class="flex w-full h-max justify-center text-[22px]">useful</p>
<div class="flex w-full h-full">
<div class="flex flex-col w-full text-center">
<p>tech</p>
<p>terms</p>
<p>copyrights</p>
</div>
<div class="flex flex-col w-full text-center">
<p>paper</p>
<p>written</p>
<p>trademark</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.tailwindcss.com"></script>
<script src="script.js"></script>
</body>
</html>