-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
66 lines (63 loc) · 3.08 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Project</title>
<link rel="stylesheet" href="./style/style.css">
</head>
<body class="bg-[#f1f3fa] h-screen flex flex-col justify-between">
<div>
<div class="mx-1 sm:mx-12 xl:mx-44 pt-10">
<div class="flex w-full">
<img src="./assets/example.jpg" alt="Foto Profil"
class="object-cover rounded-full size-32 flex-initial">
<div class="pl-5 space-y-3 w-full flex-auto">
<h4 class="text-[24px] sm:text-[28px] lg:text-[32px] 2xl:text-[44px] flex-auto w-full">Taufik <br
class="sm:hidden">
Harisman</h4>
<hr class="w-[95%] sm:w-11/12 h-2 bg-[#464646] rounded-xl opacity-80">
<div
class="hidden sm:flex sm:flex-row justify-start sm:justify-end flex-wrap w-3/5 sm:text-[16px] lg:text-[20px] 2xl:text-[26px] ">
<a href="./index.html" class="flex-auto">Home</a>
<a href="./project.html" class="flex-auto">Project</a>
<a href="./contact.html" class="flex-auto">Contact</a>
</div>
</div>
</div>
<div class="sm:hidden flex flex-row justify-between flex-wrap w-full text-[16px] my-5 text-center px-5">
<a href="./index.html" class="flex-auto">Home</a>
<a href="./project.html" class="flex-auto">Project</a>
<a href="./contact.html" class="flex-auto">Contact</a>
</div>
<div class="sm:mt-5">
<h1 class="font-sans text-[32px]">Projects</h1>
<h2 class="font-light text-[20px] sm:text-[26px]">Project perangkat lunak yang pernah saya buat</h2>
</div>
<div class="mt-7 shadow-lg p-5">
<div class="w-full">
<img class="mx-auto" src="./assets/tampilan.png" alt="">
</div>
<h1 class="font-[--signikanegative] text-[32px]">Gamelan sekar</h1>
<p>Software untuk menggerakan robot gamelan berdasarkan playlist yang ada</p>
<hr class="my-5">
<p>Dibuat menggunakan: </p>
<ul class="font-extralight">
<li>> Python</li>
<li>> C Arduino</li>
</ul>
<div class="w-full flex mt-2 sm:mt-6">
<a class="mx-auto" href="https://github.com/Harisdinus/gamelansekar">
<button class="bg-[#dedad1] h-10 w-24 sm:w-60 rounded-2xl shadow-lg font-sans">Link Github ></button>
</a>
</div>
</div>
</div>
</div>
<footer
class="flex justify-between mx-5 sm:mx-20 xl:mx-56 pt-10 text-[10px] sm:text-[16px] lg:text-[24px] py-10 font-mono">
<p>© 2024 Haris.</p>
<p class="text-right">Built with Tailwindcss. </p>
</footer>
</body>
</html>