forked from kokonior/HTML-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoktavanto.html
36 lines (36 loc) · 1.18 KB
/
oktavanto.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body><main class="grid justify-center items-center min-h-screen p-8 bg-slate-700">
<div class="
group
inline-block pb-4 bg-gradient-to-tr from-purple-600 to-orange-400 text-white overflow-hidden rounded-2xl shadow
hover:shadow-md
transition
">
<figure class="max-h-64 aspect-square overflow-hidden">
<img
class="w-full h-full object-cover transition group-hover:scale-125"
src="https://avatars.githubusercontent.com/u/8210275?v=4"
/>
</figure>
<div class="p-4">
<h3 class="text-xl font-bold">Oktavianto</h3>
<p class="font-serif">https://github.com/oktavianto</p>
</div>
<footer class="flex gap-2 px-4">
<button class="text-blue-400 hover:text-red-400">
<i class="fa-solid fa-heart"></i>
</button>
<button class="text-blue-400 hover:text-red-400">
<i class="fa-solid fa-comment"></i>
</button>
</footer>
</div>
</main>
</body>
</html>