Spaces:
Running
Running
There seems to be some code missing in the last part of the HTML :
Browse files<div class="lg:w-1/2">
<form class="bg-white rounded
- index.html +28 -2
index.html
CHANGED
|
@@ -287,7 +287,33 @@
|
|
| 287 |
</div>
|
| 288 |
|
| 289 |
<div class="lg:w-1/2">
|
| 290 |
-
<form class="bg-white rounded
|
| 291 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 292 |
</body>
|
| 293 |
</html>
|
|
|
|
| 287 |
</div>
|
| 288 |
|
| 289 |
<div class="lg:w-1/2">
|
| 290 |
+
<form class="bg-white rounded-xl shadow-lg p-8">
|
| 291 |
+
<h3 class="text-2xl font-bold text-dark mb-6">Get a Free Quote</h3>
|
| 292 |
+
<div class="space-y-4">
|
| 293 |
+
<div>
|
| 294 |
+
<label for="name" class="block text-gray-700 mb-1">Name</label>
|
| 295 |
+
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
|
| 296 |
+
</div>
|
| 297 |
+
<div>
|
| 298 |
+
<label for="email" class="block text-gray-700 mb-1">Email</label>
|
| 299 |
+
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
|
| 300 |
+
</div>
|
| 301 |
+
<div>
|
| 302 |
+
<label for="project" class="block text-gray-700 mb-1">Project Type</label>
|
| 303 |
+
<select id="project" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
|
| 304 |
+
<option value="">Select a project type</option>
|
| 305 |
+
<option value="residential">Residential Landscape</option>
|
| 306 |
+
<option value="commercial">Commercial Space</option>
|
| 307 |
+
<option value="garden">Edible Garden</option>
|
| 308 |
+
<option value="water">Water Management</option>
|
| 309 |
+
</select>
|
| 310 |
+
</div>
|
| 311 |
+
<div>
|
| 312 |
+
<label for="message" class="block text-gray-700 mb-1">Tell us about your project</label>
|
| 313 |
+
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent"></textarea>
|
| 314 |
+
</div>
|
| 315 |
+
<button type="submit" class="w-full py-3 bg-primary hover:bg-dark text-white font-semibold rounded-lg transition duration-300">Send Message</button>
|
| 316 |
+
</div>
|
| 317 |
+
</form>
|
| 318 |
</body>
|
| 319 |
</html>
|