-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-us.html
More file actions
23 lines (23 loc) · 863 Bytes
/
contact-us.html
File metadata and controls
23 lines (23 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="p-3">
<form method="post">
<div class="form-group">
<label>First Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Enter your first name">
</div>
<div class="form-group">
<label>Last Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Enter your last name">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" name="name" id="name" class="form-control" placeholder="Enter your email">
</div>
<div class="form-group">
<label>Message</label>
<textarea rows="5" name="message" id="message" class="form-control" placeholder="Write your message here"></textarea>
</div>
<div class="form-group">
<input type="button" name="button" value="Submit" class="btn btn-danger">
</div>
</form>
</div>