-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
192 lines (182 loc) · 6.22 KB
/
Copy pathcontact.html
File metadata and controls
192 lines (182 loc) · 6.22 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
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">
<!-- Created by James C. Page -->
<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">
<script src="js/nav-menu.js" async></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header class="nav-header">
<div class="nav-bar">
<div class="container nav-bar-items">
<div class="company-logo">
<h3>S&J</h3>
</div>
<div class="menu-button">
<img class="nav-header-button-open" src="img/nav-hamburger.png">
<img class="nav-header-button-close hide" src="img/nav-hamburger-close.png">
</div>
</div>
</div>
<div class="nav-dropdown-container hide">
<nav class="nav-dropdown-items">
<a class="items-bar" href="index.html" alt="Services-page">
<div class="items-container">
<h1>Home</h1>
</div>
</a>
<a class="items-bar" href="services.html" alt="Services-page">
<div class="items-container">
<h1>Services</h1>
</div>
</a>
<a class="items-bar" href="#" alt="Services-page">
<div class="items-container">
<h1>Contact</h1>
</div>
</a>
</nav>
</div>
</header> <!-- (nav-header) -->
<div class="container contact">
<header class="contact-jumbotron-header">
<img class="contact-jumbotron-img" src="img/contact/contact-jumbotron.png">
<img class="contact-jumbotron-mobile-img" src="img/contact/contact-mobile-jumbotron.png">
<div class="contact-jumbotron-img-titles">
<h1 class="jumbotron-title">Contact Us</h1>
</div>
</header> <!-- (contact): contact-jumbotron-header -->
<div class="content">
<section class="left-side">
<h2>Get In Touch</h2>
<form class="contact-form">
<div class="form-email">
<h3>Email address</h3>
<input type="text" class="input-email-box" name="email" placeholder="Enter email">
<h4>We'll never share your email with anyone else.</h4>
</div>
<div class="form-number-of-buildings">
<h3>How many buildings do you need planned?</h3>
<input type="number" name="points" min="1" step="1" value="1">
</div>
<div class="form-project-needs-summary">
<h3>Provide a brief overview of your project needs:</h3>
<textarea></textarea>
</div>
<div class="form-radio">
<div>
<input id="business-radio-selector" type="radio" class="form-radio__selection" value="small-business" name="business-type">
<label for="business-radio-selector">I am a small business</label>
</div>
<div>
<input id="resident-radio-selector" type="radio" class="form-radio__selection" value="residential-owner" name="business-type">
<label for="resident-radio-selector">I am a residential owner</label>
</div>
<div>
<input id="corp-radio-selection" type="radio" class="form-radio__selection" value="corporation" name="business-type">
<label for="corp-radio-selection">I am a corporation</label>
</div>
</div>
<input class="form-submit-button" type="submit">
</form>
</section> <!-- (contact) left-side -->
<section class="right-side">
<h2>Where We Work</h2>
<div class="location">
<h3>New York</h3>
<address>
123 Lane<br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</address>
</div>
<div class="location">
<h3>Florida</h3>
<address>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</address>
</div>
<div class="location">
<h3>California</h3>
<address>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</address>
</div>
</section> <!-- (contact) right-side -->
</div> <!-- (contact) content -->
</div> <!-- (container contact) -->
<footer>
<div class="container">
<div class="grid-layout">
<div class="initiate-contact-column">
<h3>Interested in starting a project?</h3>
<h3>Let’s talk:</h3>
<input type="text" class="input-email-box" name="email" placeholder="Enter email">
<h4>We'll never share your email with anyone else.</h4>
</div>
<div class="grid-column column1">
<h3>New York</h3>
<address>
123 Lane<br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</address>
</div>
<div class="grid-column column2">
<h3>Florida</h3>
<address>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</address>
</div>
<div class="grid-column column3">
<h3>California</h3>
<address>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</address>
</div>
</div> <!-- (footer): grid-layout -->
<div class="footer-signature">
<h5 class="signature">Copyright © 2018 Smith and Jones</h5>
</div>
</div> <!-- (footer): container -->
</footer>
<!-- Contactd Us Content
Where We Work
New York
123 Lane
Suite 100
Albany, NY 12345
202 555 0144
Florida
Ocean Drive
Suite 201
Orlando, FL 22345
502 555 0144
California
Mountain Street
Suite 105
San Diego, CA 22345
702 555 0144
-->
</body>
</html>