-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
192 lines (146 loc) · 3.27 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Us</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="heading">
S&J
</div>
<div class="home-links">
<a href='index.html'>Home</a>
<br>
<a href='services.html'>Services</a>
<br>
<a href='contact.html'>Contact</a>
</div>
<div>
<img class="drop-button2" src="img/nav-hamburger-close.png">
<img class="drop-button" src="img/nav-hamburger.png">
</div>
</div>
</header>
<div class="contact-head">
<img src="img/contact/contact-jumbotron.png">
<h2>Contact Us</h2>
</div>
<section class="contact-flex">
<div class="inTouch">
<h1>
Get In Touch
</h1>
<h2>
Email Address
</h2>
<form >
<input class="email-text" type="text" placeholder=" Enter email">
</form>
<p>We'll never share your email with anyone else.</p>
<h2>
How many buildings do you need planned?
</h2>
<form >
<select class="select-form">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</form>
<h2>
Provide a brief overview of your project needs:
</h2>
<form >
<input class="overview-text" type="text" placeholder=" Enter email">
<input type="radio" name="food" /> I am small business <br />
<input type="radio" name="food" /> I am residential owner<br />
<input type="radio" name="food" /> I am a corporation<br />
</form>
<button>
Submit!
</button>
</div>
<div class="Work">
<h1>
Where We Work
</h1>
<ul>
<h1>
<li> New York</li>
</h1>
<li>123 Lane</li>
<li>Suite 100</li>
<li>Albany, NY 12345</li>
<li>202 555 0144</li>
</ul>
<ul>
<h1>
<li>Florida</li>
</h1>
<li>Ocean Drive</li>
<li>Suite 201</li>
<li>Orlando, FL 22345</li>
<li>555 0144</li>
</ul>
<ul>
<h1>
<li>California</li>
</h1>
<li>Mountain Street Suite 105</li>
<li>San Diego, </li>
<li>CA 22345 </li>
<li>702 555 0144</li>
</div>
</section>
<footer>
<div class="email">
<h1>
Interested in starting a project? <br> Let’s talk:
</h1>
<br>
<input class="footer-input" type="text" placeholder=" Enter email">
<br>
<p>We'll never share your email with anyone else.</p>
</div>
<ul>
<h1>
<li> New York</li>
</h1>
<li>123 Lane</li>
<li>Suite 100</li>
<li>Albany, NY 12345</li>
<li>202 555 0144</li>
</ul>
<ul>
<h1>
<li>Florida</li>
</h1>
<li>Ocean Drive</li>
<li>Suite 201</li>
<li>Orlando, FL 22345</li>
<li>555 0144</li>
</ul>
<ul>
<h1>
<li>California</li>
</h1>
<li>Mountain Street Suite 105</li>
<li>San Diego, </li>
<li>CA 22345 </li>
<li>702 555 0144</li>
</ul>
<div class="footer-bottom">
Copyright © 2018 Smith and Jones
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.1/TweenMax.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>