Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions TutulDhani
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Link Saya</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background: linear-gradient(to right, #f9e7fe, #ffe6e6);
}
.btn {
display: block;
margin: 20px auto;
padding: 15px;
width: 80%;
max-width: 300px;
font-size: 18px;
color: white;
background: blue;
border-radius: 12px;
box-shadow: 3px 3px 0 red;
text-decoration: none;
}
.btn:hover {
opacity: 0.9;
}
</style>
</head>
<body>
<h2>Selamat Datang!</h2>
<a href="https://link1.com" class="btn">▶ Ketuk untuk Melihat</a>
<a href="https://link2.com" class="btn">🔇 Lihat Lebih Banyak</a>
</body>
</html>