-
Notifications
You must be signed in to change notification settings - Fork 0
/
estimate.html
106 lines (86 loc) · 2.92 KB
/
estimate.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
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
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang = "en">
<head>
<title>Get Your Free Estimate</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="bootstrap/css/bootstrap.css" rel="stylesheet" />
<SCRIPT LANGUAGE="JavaScript" SRC="softedge.js">
</SCRIPT>
</head>
<body background="testBG.png">
<div class="navbar" style="font-family: Georgia, serif">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">
Built Rite by Benjamin
</a>
<ul class="nav">
<li>
<a href="index.html">Home</a>
</li>
<li><a href="services.html">Services</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li class="active"><a href="estimate.html">Estimate</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="container" style="font-family: Georgia, serif">
<div class="span10" style="
background-color:whiteSmoke;
margin-top:20px;
margin-left:0px;
margin-right:0px;
-moz-box-shadow: 10px 10px 5px #615A5A;
-webkit-box-shadow: 10px 10px 5px #615A5A;
box-shadow: 10px 10px 5px #615A5A">
<img src="header_imgs/painting.jpg" class="span10"
style="margin-left:0px; height:125px"/>
<div style="margin-left:50px; margin-right:50px; margin-bottom:40px;
margin-top:80px; padding-top:40px">
</br>
<h2> Get a free estimate now</h2> </br>
<div style="font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size:14px; line-height:18px">
<form class="form-horizontal" action="contact.php" method="post"
style="">
<fieldset>
<div class="control-group">
<label class="control-label" for="cf_name">Name</label>
<div class="controls">
<input type="text" class="input-xlarge" name="cf_name">
</div>
</div>
<div class="control-group">
<label class="control-label" for="cf_email">Email</label>
<div class="controls">
<input type="text" class="input-xlarge" name="cf_email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="cf_phone">Phone number</label>
<div class="controls">
<input type="text" class="input-xlarge" name="cf_phone">
</div>
</div>
<div class="control-group">
<label class="control-label" for="cf_project">What's your
project?</label>
<div class="controls">
<textarea class="input-xlarge" name="cf_project"></textarea>
</div>
</div>
<div class="control-group" >
<input type="submit" value="Send" class="btn">
<input type="reset" value="Clear" class="btn">
</div>
<fieldset>
</form>
</div>
</div>
</div>
</div>
</body>
</html>