0% found this document useful (0 votes)
26 views1 page

Form

The document contains a contact form with fields for first name, last name, email, subject, and message along with a submit button to send the message.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views1 page

Form

The document contains a contact form with fields for first name, last name, email, subject, and message along with a submit button to send the message.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<div class="col-md-7 mb-5">

<form action="#" class="p-5 bg-white">

<h2 class="h4 text-black mb-5">Contact Form</h2>

<div class="row form-group">


<div class="col-md-6 mb-3 mb-md-0">
<label class="text-black" for="fname">First Name</label>
<input type="text" id="fname" class="form-control">
</div>
<div class="col-md-6">
<label class="text-black" for="lname">Last Name</label>
<input type="text" id="lname" class="form-control">
</div>
</div>

<div class="row form-group">

<div class="col-md-12">
<label class="text-black" for="email">Email</label>
<input type="email" id="email" class="form-control">
</div>
</div>

<div class="row form-group">

<div class="col-md-12">
<label class="text-black" for="subject">Subject</label>
<input type="subject" id="subject" class="form-control">
</div>
</div>

<div class="row form-group">


<div class="col-md-12">
<label class="text-black" for="message">Message</label>
<textarea name="message" id="message" cols="30" rows="7"
class="form-control" placeholder="Write your notes or questions
here..."></textarea>
</div>
</div>

<div class="row form-group">


<div class="col-md-12">
<input type="submit" value="Send Message" class="btn btn-primary
btn-md text-white">
</div>
</div>

</form>
</div>

You might also like