-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathTutulDhani
More file actions
36 lines (36 loc) · 854 Bytes
/
TutulDhani
File metadata and controls
36 lines (36 loc) · 854 Bytes
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 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>