Forms 08
Forms 08
=
<div class="bg-gray-50 text-gray-600 px-6 lg:px-8 pt-12 pb-20">
<div class="max-w-screen-xl mx-auto text-center">
<h2 class="text-2xl sm:text-3xl md:text-4xl text-gray-700 font-medium">Contact us</h2>
<p class="text-xl lg:text-2xl text-gray-600 mt-2">We are mmitted to a unique, cutting-edge approach to that</p>
<div class="max-w-2xl mx-auto mt-6 lg:mt-10">
<form action="post" class="block mt-6 space-y-4">
<div>
<input type="text" class="bg-white w-full border border-gray-300 rounded-md py-3 px-3" placeholder="Company">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<input type="text" class="bg-white w-full border border-gray-300 rounded-md py-3 px-3" placeholder="First name">
<input type="text" class="bg-white w-full border border-gray-300 rounded-md py-3 px-3" placeholder="Last name">
</div>
<div>
<input type="email" class="bg-white w-full border border-gray-300 rounded-md py-3 px-3" placeholder="Email">
</div>
<div>
<textarea rows="5" class="bg-white w-full border border-gray-300 rounded-md py-3 px-3" placeholder="Messages"></textarea>
</div>
<div>
<button class="block w-full bg-gray-600 font-semibold rounded-lg py-4 px-5 lg:px-8 text-white mt-4">Send message</button>
</div>
</form>
</div>
</div>
</div>