-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (48 loc) · 1.93 KB
/
contact.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: contact
title: Contact
permalink: /contact/
---
<div id="contactwrap"></div>
<div class="container mtb">
<div class="row">
<div class="col-lg-8">
<h4>Just Get In Touch!</h4>
<div class="hline"></div>
<p>{{ site.about }}</p>
<form role="form">
<div class="form-group">
<label for="InputName1">Your Name</label>
<input type="email" class="form-control" id="exampleInputEmail1">
</div>
<div class="form-group">
<label for="InputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1">
</div>
<div class="form-group">
<label for="InputSubject1">Subject</label>
<input type="email" class="form-control" id="exampleInputEmail1">
</div>
<div class="form-group">
<label for="message1">Message</label>
<textarea class="form-control" id="message1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-theme">Submit</button>
</form>
</div><! --/col-lg-8 -->
<div class="col-lg-4">
<h4>Our Address</h4>
<div class="hline"></div>
<p>
{% for line in site.address.first.lines %}
{{ line }} <br>
{% endfor %}
</p>
<p>
Email: {{ site.email }}<br/>
Tel: {{ site.tel }}
</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
</div><! --/row -->
</div><! --/container -->