-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML
139 lines (121 loc) · 3.29 KB
/
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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Group Directory</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}
header {
background-color: #0ab394;
padding: 20px;
text-align: center;
color: white;
}
header h1 {
margin: 0;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.search-bar {
margin: 20px 0;
text-align: center;
}
.search-bar input {
width: 80%;
padding: 10px;
font-size: 16px;
}
.filters {
display: flex;
justify-content: space-around;
margin: 20px 0;
}
.filters select, .filters button {
padding: 10px;
font-size: 16px;
}
.group-list {
margin-top: 20px;
}
.group {
background-color: white;
padding: 20px;
margin: 10px 0;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.group h2 {
margin: 0;
}
.group p {
margin: 10px 0 0;
}
.social-icons {
position: fixed;
left: 10px;
top: 50%;
transform: translateY(-50%);
}
.social-icons a {
display: block;
margin: 10px 0;
text-align: center;
padding: 10px;
background-color: #fff;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: #333;
text-decoration: none;
}
.social-icons a img {
width: 24px;
height: 24px;
}
</style>
</head>
<body>
<header>
<h1>GroupSor</h1>
<p>Enjoy Unlimited Groups</p>
</header>
<div class="container">
<div class="search-bar">
<input type="text" placeholder="Type Keywords to Search">
</div>
<div class="filters">
<select>
<option value="">Any Category</option>
</select>
<select>
<option value="">Any Country</option>
</select>
<select>
<option value="">Any Language</option>
</select>
<button>Find group</button>
</div>
<div class="group-list">
<div class="group">
<h2>GRUP JB01 IPUNG4YOU X RAFI STORE</h2>
<p>Category: Business/Advertising/Marketing</p>
<p>Country: Indonesia</p>
<p>Language: Indonesian</p>
</div>
<!-- Tambahkan lebih banyak grup di sini -->
</div>
</div>
<div class="social-icons">
<a href="#"><img src="https://image.flaticon.com/icons/png/512/124/124034.png" alt="WhatsApp"></a>
<a href="#"><img src="https://image.flaticon.com/icons/png/512/124/124021.png" alt="Twitter"></a>
</div>
</body>
</html>