-
Notifications
You must be signed in to change notification settings - Fork 9
/
contact.php
52 lines (48 loc) · 2.38 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
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
52
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Bootstrap Web Design</title>
<?php require 'utils/styles.php'; ?><!--css links. file found in utils folder-->
<?php require 'utils/scripts.php'; ?><!--js links. file found in utils folder-->
</head>
<body>
<?php require 'utils/header.php'; ?><!--header content. file found in utils folder-->
<div class = "content"><!--body content holder-->
<div class = "container">
<div class = "col-md-12"><!--body content title holder with 12 grid columns-->
<h1>Contact Us</h1><!--body content title-->
</div>
</div>
<div class="container">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="container">
<div class="col-md-6 contacts">
<h1><span class="glyphicon glyphicon-user"></span> Amol Pardhi</h1>
<p>
<span class="glyphicon glyphicon-envelope"></span> Email: [email protected]<br>
<span class="glyphicon glyphicon-link"></span> Facebook: www.facebook.com/mayaeventplanner<br>
<span class="glyphicon glyphicon-phone"></span> Mobile: 08712345678
</p>
</div>
<div class="col-md-6">
<form>
<div class="form-group">
<label for="Title">Title:</label>
<input type="text" name="title" id="Title" class="form-control">
</div>
<div class="form-group">
<label for="Comment">Message:</label>
<textarea id="Comment" rows="10" class="form-control"></textarea>
</div>
<button type="submit" class="btn btn-default pull-right">Send <span class="glyphicon glyphicon-send"></span></button>
</form>
</div>
</div>
</div><!--body content div-->
<?php require 'utils/footer.php'; ?><!--footer content. file found in utils folder-->
</body>
</html>