-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
253 lines (246 loc) · 21.7 KB
/
index.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Navbar</title>
<link rel="stylesheet" href="src/output.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
</head>
<body class="bg-gray-100">
<nav class="bg-gray-800 p-4 fixed w-full top-0 z-50">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div>
<a href="#" class="text-white text-lg font-bold">Logo</a>
</div>
<div class="md:flex hidden space-x-4">
<a href="#home" class="text-white">Home</a>
<a href="#about" class="text-white">About</a>
<a href="#services" class="text-white">Services</a>
<a href="#contact" class="text-white">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-white focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
<div id="mobile-menu" class="fixed top-0 right-0 mt-16 bg-gray-800 w-64 transform translate-x-full md:hidden menu-hidden flex flex-col space-y-4 pt-8">
<a href="#home" class="text-white p-8">Home</a>
<a href="#about" class="text-white p-8">About</a>
<a href="#services" class="text-white p-8">Services</a>
<a href="#contact" class="text-white p-8">Contact</a>
</div>
</nav>
<section id="home" class="px-6 pt-20 bg-white">
<div class="mx-auto max-w-7xl grid grid-cols-1 lg:grid-cols-2 gap-4">
<div>
<h1 class="mb-4 text-3xl font-bold">Home</h1>
<p class="text-gray-600">Welcome to our homepage. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac venenatis velit. Integer in est sed urna auctor interdum non nec purus.</p>
</div>
<div>
<img src="img/logo.png" alt="Logo" class="w-full h-auto">
</div>
</div>
</section>
<section id="about" class="bg-white p-8">
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="about-left">
<h2 class="text-2xl font-bold mb-4">About Us</h2>
<p class="text-gray-600">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac venenatis velit. Integer in est sed urna auctor interdum non nec purus. Cras scelerisque luctus arcu at ultrices. Sed ultricies, odio eget volutpat interdum, enim felis suscipit nisi, et elementum orci erat a erat.</p>
</div>
<div class="about-right">
<h2 class="text-2xl font-bold mb-4">Our Mission</h2>
<p class="text-gray-600">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac venenatis velit. Integer in est sed urna auctor interdum non nec purus. Cras scelerisque luctus arcu at ultrices. Sed ultricies, odio eget volutpat interdum, enim felis suscipit nisi, et elementum orci erat a erat.</p>
</div>
</div>
</section>
<section id="services" class="p-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl font-bold mb-8 text-center">Our Services</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 1</h3>
<p class="text-gray-600">Description of service 1.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 2</h3>
<p class="text-gray-600">Description of service 2.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 3</h3>
<p class="text-gray-600">Description of service 3.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 4</h3>
<p class="text-gray-600">Description of service 4.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 5</h3>
<p class="text-gray-600">Description of service 5.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 6</h3>
<p class="text-gray-600">Description of service 6.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 7</h3>
<p class="text-gray-600">Description of service 7.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold mb-4">Service 8</h3>
<p class="text-gray-600">Description of service 8.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="bg-gray-100 p-8">
<h2 class="text-3xl font-bold mb-8 text-center">Our Services</h2>
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="contact-left bg-white p-6 rounded-lg shadow-lg">
<form action="https://formspree.io/f/mgegjqne" method="POST" class="space-y-4">
<div>
<label for="nama" class="block text-sm font-medium text-gray-700">Nama:</label>
<input type="text" id="nama" name="nama" required class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email:</label>
<input type="email" id="email" name="email" required class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
</div>
<div>
<label for="nomorTelepon" class="block text-sm font-medium text-gray-700">Nomor Telepon:</label>
<input type="tel" id="nomorTelepon" name="nomorTelepon" required class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
</div>
<div>
<label for="pekerjaan" class="block text-sm font-medium text-gray-700">Pekerjaan:</label>
<select id="pekerjaan" name="pekerjaan" required class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
<option value="">Pilih Pekerjaan</option>
<option value="PETANI">Petani</option>
<option value="NELAYAN">Nelayan</option>
<option value="PEDAGANG">Pedagang</option>
<option value="WIRAUSAHA">Wiraswasta</option>
<option value="WIRASWASTA">Wiraswasta</option>
<option value="TNI">TNI</option>
<option value="POLRI">Polri</option>
<option value="PNS">PNS</option>
</select>
</div>
<div>
<label for="pendidikan" class="block text-sm font-medium text-gray-700">Pendidikan:</label>
<select id="pendidikan" name="pendidikan" required class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm">
<option value="">Pilih Pendidikan</option>
<option value="SD">SD</option>
<option value="SMP">SMP</option>
<option value="SMA/SMK/MA/DI">SMA/SMK/MA/DI</option>
<option value="DII">DII</option>
<option value="DIII">DIII</option>
<option value="DIV">DIV</option>
<option value="S1">S1</option>
<option value="S2">S2</option>
<option value="S3">S3</option>
</select>
</div>
<div>
<label for="pesan" class="block text-sm font-medium text-gray-700">Pesan:</label>
<textarea id="pesan" name="pesan" rows="4" placeholder="Masukkan pesan" required class="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm"></textarea>
</div>
<div>
<button type="submit" class="w-full bg-indigo-600 text-white py-2 px-4 rounded-md shadow-sm hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Send Message</button>
</div>
</form>
</div>
<div class="contact-right bg-white p-4 rounded-lg shadow-lg">
<div class="space-y-8">
<div class="contact-item">
<div class="contact-item-icon flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-500 mr-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 1c-3.148 0-6 2.553-6 5.702 0 3.148 2.602 6.907 6 12.298 3.398-5.391 6-9.15 6-12.298 0-3.149-2.851-5.702-6-5.702zm0 8c-1.105 0-2-.895-2-2s.895-2 2-2 2 .895 2 2-.895 2-2 2zm12 14h-24l4-8h3.135c.385.641.798 1.309 1.232 2h-3.131l-2 4h17.527l-2-4h-3.131c.435-.691.848-1.359 1.232-2h3.136l4 8z" />
</svg>
<div class="contact-item-detail">
<h4 class="text-lg font-semibold text-gray-700">Address</h4>
<p class="text-gray-500">Dusun Bukit Indah, Desa Sumber Makmur Kec. Gane Timur</p>
<div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d63836.9667903256!2d127.80735033862777!3d-0.11398908722370373!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2d62857929e6ec05%3A0x43b111b86ed4cd75!2sBukit%20Indah%2C%20Kec.%20Gane%20Tim.%2C%20Kabupaten%20Halmahera%20Selatan%2C%20Maluku%20Utara!5e0!3m2!1sid!2sid!4v1718473938681!5m2!1sid!2sid" width="800" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" class="w-full"></iframe>
</div>
</div>
</div>
</div>
<div class="contact-item">
<div class="contact-item-icon flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-500 mr-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 22.621l-3.521-6.795c-.008.004-1.974.97-2.064 1.011-2.24 1.086-6.799-7.82-4.609-8.994l2.083-1.026-3.493-6.817-2.106 1.039c-7.202 3.755 4.233 25.982 11.6 22.615.121-.055 2.102-1.029 2.11-1.033z" />
</svg>
<div class="contact-item-detail">
<h4 class="text-lg font-semibold text-gray-700">Phone</h4>
<p class="text-gray-500">(501) 414-1541</p>
</div>
</div>
</div>
<div class="contact-item">
<div class="contact-item-icon flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-500 mr-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M0 3v18h24v-18h-24zm21.518 2l-9.518 7.713-9.518-7.713h19.036zm-19.518 14v-11.817l10 8.104 10-8.104v11.817h-20z" />
</svg>
<div class="contact-item-detail">
<h4 class="text-lg font-semibold text-gray-700">Email</h4>
<p class="text-gray-500">dummyemail@gmail.com</p>
</div>
</div>
</div>
<div class="contact-item">
<div class="contact-item-icon flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-500 mr-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.005 3.5c.045.743.187 1.472.424 2.168.264.78.65 1.528 1.12 2.243l.316.471a19.527 19.527 0 002.36 2.69 19.38 19.38 0 002.876 2.516c.776.62 1.605 1.184 2.482 1.66.22.122.448.227.674.328l.422.186c.75.318 1.544.537 2.364.682.715.123 1.443.183 2.169.179.468-.001.929-.057 1.39-.169l1.553-.356c.507-.118 1.01-.268 1.513-.427a8.143 8.143 0 00.636-.233c.105-.045.219-.074.323-.127l.215-.11c.07-.042.135-.094.203-.137.368-.236.742-.465 1.109-.708a2.85 2.85 0 00.613-.515c.125-.117.243-.243.355-.374a.944.944 0 00.162-.271c.04-.111.084-.216.115-.33.051-.186.105-.371.145-.562.079-.376.153-.754.194-1.137.033-.297.056-.596.057-.894.001-.489-.055-.978-.152-1.464a.915.915 0 00-.058-.219c-.058-.146-.131-.29-.203-.433-.045-.088-.09-.175-.135-.262-.07-.142-.145-.282-.227-.42a6.453 6.453 0 00-.658-.89 10.614 10.614 0 00-.656-.774c-.523-.588-1.083-1.147-1.655-1.693-.978-.943-2.022-1.819-3.123-2.647-.68-.507-1.378-1.003-2.096-1.473-.643-.407-1.31-.774-1.99-1.121-.793-.394-1.6-.759-2.423-1.083-.51-.197-1.03-.374-1.558-.524-.364-.103-.73-.194-1.098-.276a7.46 7.46 0 00-.676-.121 5.398 5.398 0 00-1.426-.05c-.448.034-.892.087-1.337.159-.514.085-1.022.198-1.525.326-.53.136-1.051.3-1.564.475-.438.149-.87.327-1.294.524-.316.146-.625.316-.926.51a4.563 4.563 0 00-.365.257c-.195.157-.38.327-.559.506-.273.275-.543.555-.806.84-.206.222-.405.448-.594.684a6.445 6.445 0 00-.884 1.381c-.327.608-.62 1.237-.878 1.882a11.352 11.352 0 00-.553 1.848 8.792 8.792 0 00-.205 1.42c-.01.399.03.799.117 1.195zm1.495-.1a.81.81 0 00.006.166 7.06 7.06 0 01.073-.413c.006-.02.015-.038.021-.057l.002-.011c.009-.019.018-.037.027-.056l.019-.034c.004-.005.009-.009.013-.014a.5.5 0 01.062-.086c.021-.025.045-.048.067-.072a.8.8 0 01.11-.096c.053-.045.104-.09.159-.131a.454.454 0 01.05-.039c.011-.006.02-.015.031-.02.01-.006.022-.007.032-.012.023-.01.046-.017.07-.025.016-.005.033-.011.05-.015l.003-.001c.034-.008.068-.016.103-.02l.012-.002.071-.009c.054-.006.108-.008.162-.007l.01-.002c.041 0 .082.001.123.006.059.006.116.015.175.029.046.01.093.026.139.04.032.01.065.015.097.029l.005.002c.037.014.073.03.11.047.071.03.14.064.207.101l.015.009c.066.037.132.072.196.116a2.828 2.828 0 01.276.19c.104.073.206.151.305.233.065.053.127.109.191.166.079.07.155.144.232.218a3.184 3.184 0 01.482.623l.015.024c.084.139.162.283.239.428l.01.017c.094.177.18.359.263.544l.009.02c.068.146.134.294.196.444.001.002.002.004.003.006.016.04.031.08.046.12.067.178.133.359.194.54.001.004.002.008.003.012.06.184.117.37.169.558.038.139.073.279.106.42.033.137.063.276.092.415.027.139.051.279.072.419.024.155.043.31.06.466a.878.878 0 00.005.04c.023.215.037.43.043.646.005.233.001.466-.008.699.005-.02.005-.04.01-.061a11.096 11.096 0 01-.067-.614 6.457 6.457 0 01-.097-.586c-.014-.094-.03-.188-.045-.282-.022-.13-.047-.26-.076-.39a6.35 6.35 0 00-.171-.62l-.006-.02a6.252 6.252 0 00-.273-.681 4.41 4.41 0 00-.35-.616 2.84 2.84 0 00-.144-.225c-.057-.086-.114-.172-.175-.256l-.012-.015a2.882 2.882 0 00-.208-.265 4.793 4.793 0 00-.373-.406l-.016-.015c-.108-.11-.22-.217-.337-.32-.09-.081-.183-.16-.28-.236l-.005-.004a2.996 2.996 0 00-.329-.233c-.02-.012-.039-.025-.059-.036-.052-.033-.104-.064-.158-.093-.046-.023-.091-.047-.138-.068-.012-.005-.025-.01-.037-.015a2.942 2.942 0 00-.465-.151c-.012-.002-.024-.005-.036-.008-.057-.015-.115-.03-.173-.042a3.78 3.78 0 00-.498-.066 3.706 3.706 0 00-.382.002l-.017.001c-.032.002-.064.003-.096.006-.003 0-.006 0-.009 0a2.78 2.78 0 00-.354.031l-.02.001a2.67 2.67 0 00-.486.111l-.011.003c-.038.01-.075.023-.112.034-.04.013-.08.026-.119.04-.025.01-.05.021-.074.033-.056.026-.111.055-.166.085l-.009.004a2.806 2.806 0 00-.254.146l-.015.01a3.038 3.038 0 00-.337.234c-.028.022-.056.045-.084.067a2.784 2.784 0 00-.316.284 4.203 4.203 0 00-.213.21l-.01.01c-.098.107-.192.218-.28.334a3.732 3.732 0 00-.186.244c-.09.123-.175.25-.256.379l-.018.03c-.085.137-.168.276-.243.418l-.001.001c-.085.154-.163.312-.24.471-.038.075-.072.151-.108.227-.082.179-.16.361-.231.545a11.346 11.346 0 00-.487 1.184c-.015.044-.029.088-.043.132a8.6 8.6 0 00-.204.662c-.042.151-.081.302-.119.454a5.158 5.158 0 00-.119.52c-.032.18-.059.361-.085.543a.806.806 0 01-.004.03c-.016.118-.029.236-.042.354-.01.081-.019.163-.026.245-.002.025-.004.05-.005.074zm-1.5-.058c-.027-.167-.06-.333-.1-.498l-.007-.029a7.68 7.68 0 01-.152-.567 9.95 9.95 0 01-.21-1.137c-.016-.095-.03-.191-.043-.286-.007-.06-.015-.12-.02-.18a9.468 9.468 0 01-.044-.784c-.008-.26-.01-.52-.001-.779.004-.12.013-.241.021-.36.011-.149.024-.298.042-.446.014-.12.031-.239.051-.358l.001-.005c.005-.037.011-.073.017-.11.019-.113.042-.225.065-.338.029-.148.059-.295.095-.442.002-.008.003-.017.005-.025.039-.155.086-.308.134-.462.007-.02.014-.04.021-.06a9.802 9.802 0 01.392-1.074 8.952 8.952 0 01.24-.515c.01-.02.022-.04.033-.061.048-.091.097-.181.15-.271.015-.024.03-.048.046-.071.065-.101.134-.2.205-.299.034-.046.07-.092.107-.137.065-.08.134-.157.204-.233.023-.025.046-.05.07-.075.065-.068.132-.134.2-.198.042-.04.084-.081.128-.12.09-.083.184-.163.279-.24.028-.023.057-.046.086-.068.079-.061.16-.121.242-.178.02-.014.039-.029.059-.043a2.716 2.716 0 01.186-.123c.02-.013.039-.027.059-.04.104-.067.209-.13.316-.19.041-.023.083-.046.126-.067.093-.046.188-.088.284-.127.012-.005.024-.011.036-.016.095-.038.192-.071.29-.101.033-.01.066-.021.099-.03a2.785 2.785 0 01.32-.075c.026-.005.053-.01.08-.014a3.678 3.678 0 01.718-.059c.063 0 .126.002.189.005l.044.001c.068.002.136.005.204.009.016.001.032.002.048.004a3.766 3.766 0 01.604.107c.053.012.106.026.158.041l.003.001c.132.037.263.079.392.126a4.006 4.006 0 011.383.844c.02.017.039.034.058.051.008.008.016.016.025.023.104.098.205.2.303.306a5.408 5.408 0 01.534.68c.005.006.01.013.014.02.029.044.058.088.085.133a.5.5 0 00-.014-.021l.063.103.002.003c.042.067.083.134.122.203.029.051.057.103.085.155.004.007.008.014.011.02.04.071.077.144.113.218.028.059.057.117.084.176.03.066.059.132.086.199.033.077.064.156.094.235.01.027.02.055.029.082.02.053.04.106.058.159.042.118.081.238.119.357.01.03.019.061.029.091.039.124.078.248.114.373.005.017.011.034.016.051.053.172.102.345.15.52.004.016.008.033.012.05.02.074.037.15.055.224a6.883 6.883 0 01.087.559c.008.063.018.126.025.189.01.088.017.177.024.265.007.12.01.239.013.359.003.12.002.241.003.361a7.387 7.387 0 01-.011.387c-.003.091-.006.181-.01.272l-.002.052c-.002.03-.005.059-.007.089l-.003.034a6.38 6.38 0 01-.067.646c-.024.176-.056.351-.093.525-.005.025-.01.051-.015.077-.041.191-.09.38-.145.568-.003.008-.006.017-.008.025a10.23 10.23 0 01-.403 1.182 9.55 9.55 0 01-.211.464c-.012.025-.024.05-.036.075a6.02 6.02 0 01-.211.425c-.001.002-.002.005-.003.007a9.96 9.96 0 01-.7 1.21 10.003 10.003 0 01-.87 1.084c-.044.054-.09.106-.136.158a9.91 9.91 0 01-1.296 1.221 10.085 10.085 0 01-1.11.779c-.057.035-.115.066-.172.1-.191.106-.384.206-.581.298a8.214 8.214 0 01-.813.331c-.141.045-.284.084-.426.12-.08.02-.16.04-.24.057a6.773 6.773 0 01-.528.085l-.062.006-.003.001a.81.81 0 01-.225.016h-.001c-.122 0-.244-.004-.365-.013a.81.81 0 01-.23-.043c-.1-.024-.199-.055-.297-.09-.084-.029-.168-.063-.25-.099l-.031-.013c-.081-.036-.162-.076-.242-.117l-.045-.024a8.546 8.546 0 01-.988-.595 8.933 8.933 0 01-.936-.772 10.057 10.057 0 01-.837-.832 8.822 8.822 0 01-.733-.883 9.81 9.81 0 01-.613-.96c-.056-.091-.111-.182-.164-.275l-.02-.035a7.918 7.918 0 01-.682-1.39c-.04-.09-.08-.18-.117-.271-.07-.166-.139-.333-.204-.502l-.04-.1a8.815 8.815 0 01-.246-.633l-.005-.016a9.422 9.422 0 01-.165-.474c-.024-.077-.045-.154-.067-.231-.045-.158-.087-.317-.126-.477a.81.81 0 00-.001.002.81.81 0 00-.015-.054.81.81 0 01-.005-.027z" />
</svg>
<div class="contact-item-detail">
<h4 class="text-lg font-semibold text-gray-700">Website</h4>
<p class="text-gray-500">www.example.com</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="bg-gray-800 text-white p-8">
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div>
<h4 class="text-lg font-semibold mb-4">About Us</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nisl eros, pulvinar facilisis justo mollis, auctor consequat urna.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Services</h4>
<ul>
<li><a href="#" class="hover:underline">Web Development</a></li>
<li><a href="#" class="hover:underline">App Development</a></li>
<li><a href="#" class="hover:underline">SEO Services</a></li>
<li><a href="#" class="hover:underline">Digital Marketing</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Contact Us</h4>
<ul>
<li><a href="#" class="hover:underline">Email: info@example.com</a></li>
<li><a href="#" class="hover:underline">Phone: (123) 456-7890</a></li>
<li><a href="#" class="hover:underline">Address: 123 Main Street, City, Country</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Follow Us</h4>
<ul class="flex space-x-4">
<li><a href="#" class="fa-brands fa-facebook-f hover:text-blue-500"></a></li>
<li><a href="#" class="fa-brands fa-twitter hover:text-blue-500"></a></li>
<li><a href="#" class="fa-brands fa-instagram hover:text-blue-500"></a></li>
<li><a href="#" class="fa-brands fa-linkedin hover:text-blue-500"></i>
<li><a href="#" class="fa-brands fa-github hover:text-blue-500"></a></li>
<li><a href="#" class="fa-brands fa-youtube hover:text-blue-500"></a></li>
</ul>
</div>
</div>
</footer>
<script src="dist/js/script.js"></script>
</body>
</html>