-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Linktree</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Poetheraa</h1>
</header>
<main>
<ul class="link-list">
<li>
<a href="https://example.com" target="_blank">
<i class="fas fa-globe"></i>
Website
</a>
</li>
<li>
<a href="https://instagram.com" target="_blank">
<i class="fab fa-instagram"></i>
Instagram
</a>
</li>
<li>
<a href="https://twitter.com" target="_blank">
<i class="fab fa-twitter"></i>
Twitter
</a>
</li>
<!-- Tambahkan daftar link lainnya di sini -->
</ul>
</main>
</body>
</html>