Forms 02
Forms 02
=
<div class="bg-gray-50 text-gray-600">
<div class="py-6 lg:py-12 xl:py-32 p-8 lg:px-16 flex items-center justify-center mx-auto">
<div class="bg-white p-6">
<h2 class="text-2xl sm:text-3xl md:text-4xl text-gray-700 font-medium text-center">Contact us</h2>
<form action="post" class="max-w-md pt-4 lg:pt-6 space-y-4">
<input type="text" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Name">
<input type="email" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Email">
<textarea name="message" id="message" cols="30" rows="10" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Your message"></textarea>
<button class="inline-block bg-gray-600 font-semibold rounded-lg py-4 px-5 lg:px-8 text-white mt-4">Send form</button>
</form>
</div>
</div>
</div>