-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
94 lines (72 loc) · 3.87 KB
/
contact.html
File metadata and controls
94 lines (72 loc) · 3.87 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>Basil Bush</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stysheet" type="text/css" href="css/bootstrap-theme.css.map" />
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-2">
</div>
<div class="col-lg-8">
<img class="center-block" src="img/Basil.png"/>
</div>
<div class="col-lg-2">
</div>
</div>
<div class="row">
<div class="col-lg-12">
<nav>
<ul>
<li class="nav_button" id="nav_home_button"><span class="glyphicon glyphicon-home" aria-hidden="true"></span> Home</li>
<li class="nav_button" id="nav_about_button"><span class="glyphicon glyphicon-user" aria-hidden="true"></span> About Us</li>
<li class="nav_button" id="nav_portfolio_button"><span class="glyphicon glyphicon-folder-open" aria-hidden="true"></span> Shop</li>
<li class="nav_button" id="nav_contact_button"><span class="glyphicon glyphicon-inbox" aria-hidden="true"></span> Contact Us</li> </ul>
</nav>
</div>
</div>
<div class="row" id="contactForm">
<div class="col-lg-6 col-lg-offset-3">
<form class="form-horizontal" role="form" method="post" action="index.php">
<div class="form-group">
<label for="name" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="name" name="name" placeholder="Your Name" value="">
</div>
</div>
<div class="form-group">
<label for="email" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" name="email" placeholder="example@domain.com" value="">
</div>
</div>
<div class="form-group">
<label for="message" class="col-sm-2 control-label">Message</label>
<div class="col-sm-10">
<textarea class="form-control" rows="4" name="message" placeholder="Your Message"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-10 col-sm-offset-2">
<input id="submit" name="submit" type="submit" value="Send" class="btn btn-danger">
</div>
</div>
</div>
</form>
</div>
</div>
<footer class="col-lg-12">
<span class="glyphicon glyphicon-copyright-mark col-lg-2" >2015</span>
<ul class="col-lg-8">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<span class="col-lg-2" >WAD</span>
</footer>
</div>
</body>
</html>