-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjoki.html
More file actions
89 lines (89 loc) · 2.18 KB
/
joki.html
File metadata and controls
89 lines (89 loc) · 2.18 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List Joki Game</title>
<style>
body {
background-color: #000;
color: #fff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #0ff;
margin-bottom: 30px;
}
.container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.card {
background: rgba(0, 255, 255, 0.1);
border: 1px solid #0ff;
border-radius: 12px;
padding: 20px;
text-align: center;
transition: 0.3s;
}
.card:hover {
background: rgba(0, 255, 255, 0.2);
transform: translateY(-5px);
}
.card img {
width: 64px;
height: 64px;
margin-bottom: 10px;
}
.card h2 {
font-size: 1.2em;
margin-bottom: 10px;
color: #0ff;
}
.card p {
font-size: 0.9em;
margin-bottom: 15px;
color: #ccc;
}
.card a {
display: inline-block;
background: #0ff;
color: #000;
padding: 8px 16px;
border-radius: 6px;
text-decoration: none;
transition: 0.3s;
}
.card a:hover {
background: #00cccc;
}
</style>
</head>
<body>
<h1>List Joki Game</h1>
<div class="container">
<div class="card">
<img src="https://img12.pixhost.to/images/1497/585002925_ditss.jpg" alt="ML">
<h2>Mobile Legends</h2>
<p>Jasa joki rank ML termurah dan terpercaya.</p>
<a href="joki-ml.html">Lihat List Harga ML</a>
</div>
<div class="card">
<img src="https://img.icons8.com/color/96/free-fire.png" alt="Free Fire">
<h2>Free Fire</h2>
<p>Push rank auto win pakai jasa joki FF kami.</p>
<a href="joki-ff.html">Lihat List Harga FF</a>
</div>
<div class="card">
<img src="https://img.icons8.com/color/96/pubg.png" alt="PUBG">
<h2>PUBG Mobile</h2>
<p>Joki PUBG Mobile cepat dan aman untuk semua tier.</p>
<a href="joki-pubg.html">Lihat List Harga PUBG</a>
</div>
</div>
</body>
</html>