-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
140 lines (133 loc) · 3.83 KB
/
contact.html
File metadata and controls
140 lines (133 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" 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>
<div class="container contact">
<div class="jumbo-contact">
<div class="dropdown">
<div class="overlay">
<h1>S&J</h1>
<div class="overlay-content">
<nav>
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</nav>
</div>
<button class="close-btn">X</button>
</div>
<div class="navigation">
<h1>S&J</h1>
<div class="hamburger">
<img class = "dropdown-button" src="img/nav-hamburger.png" alt="Navigation hamburger">
</div>
</div>
</div>
<div class = "container">
<h1>Contact Us</h1>
</div>
</div>
<div class="main-content">
<div class="form">
<h1>Get in Touch</h1>
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="Enter email">
<p>We'll never share your email with anyone else.</p>
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">How many buildings do you need planned</label>
<select class="form-control" 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">Please provide a brief overview of your project needs:</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="5"></textarea>
</div>
<div class="radios">
<input type="radio" name="group2" value="business" checked>I am a small business<br>
<input type="radio" name="group2" value="residential">I am a residential owner<br>
<input type="radio" name="group2" value="corporate">I am a corporation<br>
</div>
<button type="button" name="Submit">Submit</button>
</form>
</div>
<div class="locations">
<h1>Where We Work</h1>
<div class="location">
<h2>New York</h2>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</div>
<div class="location">
<h2>Florida</h2>
<p>Ocean Drive</p>
<p>Suite 201</p>
<p>Orlando, FL 22345</p>
<p>502 555 0144</p>
</div>
<div class="location">
<h2>California</h2>
<p>Mountain Street</p>
<p>Suite 105</p>
<p>San Diego, CA 22345</p>
<p>702 555 0144</p>
</div>
</div>
</div>
<div class="footer">
<div class="footer-top">
<form>
<div class="form-group">
<label for="exampleInputEmail1">Interested in starting a project? Let's talk:</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder=" Enter email"><br>
<p>We'll never share your email with anyone else.</p>
</div>
</form>
<div class="location">
<h2>New York</h2>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</div>
<div class="location">
<h2>Florida</h2>
<p>Ocean Drive</p>
<p>Suite 201</p>
<p>Orlando, FL 22345</p>
<p>502 555 0144</p>
</div>
<div class="location">
<h2>California</h2>
<p>Mountain Street</p>
<p>Suite 105</p>
<p>San Diego, CA 22345</p>
<p>702 555 0144</p>
</div>
</div>
<div class="footer-bottom">
<p>Copyright © 2018 Smith and Jones</p>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>