-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
144 lines (136 loc) · 3.56 KB
/
contact.html
File metadata and controls
144 lines (136 loc) · 3.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Us</title>
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="content">
<div class="jumbo">
<img src="img/contact/contact-jumbotron.png" alt="jumbotron">
<h1>S&J</h1>
<h2>
☰
</h2>
<p>
Contact Us
</p>
</div>
<div class="articles">
<div class="main-content2">
<div class="left_content">
<h1>Get In Touch</h1>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label><br>
<input type="email" class="form-control height1" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email"><br>
<h3>We'll never share your email with anyone else.</h3>
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">How many buildings do you need planned?</label><br>
<select class="form-control height1" id="exampleFormControlSelect1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Provide a brief overview of your project needs:</label><br>
<textarea class="form-control height2" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1" checked>
<label class="form-check-label" for="exampleRadios1">
I am a small business
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios2" value="option2">
<label class="form-check-label" for="exampleRadios2">
I am a residential owner
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios3" value="option3">
<label class="form-check-label" for="exampleRadios3">
I am a corporation
</label>
</div>
</div>
<div class="button">
Submit
</div>
</form>
</div> <!-- end left-side content -->
<div class="right_content">
<h1>Where We Work</h1>
<div class="contact">
<h2>New York</h2>
123 Lane<br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</div><div class="contact">
<h2>Florida</h2>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</div><div class="contact">
<h2>California</h2>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</div>
</div>
</div> <!-- end main content -->
</div> <!-- ends articles -->
<div class="footer">
<div class="upper">
<div class="info1">
<h2>Interested in starting a project? <br>
Let’s talk:</h2>
<div class="input-group">
<input type="text" class="form-control" placeholder="Enter email" aria-label="Default" aria-describedby="inputGroup-sizing-default">
</div>
<h3>We'll never share your email with anyone else.</h3>
</div>
<div class="info1">
<h2>New York</h2>
123 Lane<br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</div><div class="info1">
<h2>Florida</h2>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</div><div class="info1">
<h2>California</h2>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</div>
</div>
<div class="lower">
<h3>Copyright © 2018 Smith and Jones</h3>
</div>
</div><!-- ends footer -->
</div>
</div>
<script src="index.js"></script>
</body>
</html>