-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
25 lines (25 loc) · 1.03 KB
/
contact.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!-- Start of contact page -->
<div class="container mt-4" id="contact">
<h2 class="text-center mb-4">Contact Us</h2>
<div class="row">
<div class="col-md-8">
<form action="" method="POST">
<input type="text" name="name" id="name" class="form-control" placeholder="Name"><br>
<input type="text" name="subject" id="subject" class="form-control" placeholder="Subject"><br>
<input type="email" name="email" id="email" class="form-control" placeholder="E-mail"><br>
<textarea name="message" class="form-control" placeholder="How can we help you? "
style="height: 150px;"></textarea>
<input value="Send" class="btn btn-info btn-sm mt-4" name="submit"><br><br>
</form>
</div>
<div class="col-md-4 stripe text-white text-center">
<h4>eLearning</h4>
<p>Elearning,
Near Noakhali Tower, Noakhali
Sengbag <br>
Phone: 017715555 <br>
www.elearning.com <br>
</p>
</div>
</div>
</div>