-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
154 lines (129 loc) · 3.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/architect.png">
<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]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.1/TweenMax.min.js"></script>
</head>
<body>
<header class="navigation">
<div class="main-navigation">
<h3>S&J</h3>
<img class="hamburger" src="./img/nav-hamburger.png" alt="hamburger">
</div>
<div class="overlay hidden">
<div class="overlay-content">
<h3>S&J</h3>
<div class="links">
<a href="./index.html">Home</a>
<a href="./services.html">Services</a>
<a href="./contact.html">Contact</a>
</div>
<img class="cross" src="./img/nav-hamburger-close.png" alt="cross">
</div>
</div>
</header> <!-- Navigation End -->
<section class="contact-header">
<div class="contact-jumbotron">
<h1 class="container">Contact Us</h1>
</div>
</section>
<div class="contact container">
<section class="contact-content">
<h2>Get In Touch</h2>
<form class="form" onsubmit="return false">
<label for="email">Email address</label>
<input type="email" name="email" placeholder="Enter Email" id="email" required>
<p>We'll never share your email with anyone else.</p>
<label for="building">How many buildings do you need planned?</label>
<input type="number" name="buildingNum" id="building" value="1" step="1" min="1" max="5" required>
<label for="overview">Provide a brief overview of your project needs:</label>
<textarea name="overview" id="overview" cols="30" rows="7" required></textarea>
<div class="radio">
<div>
<input type="radio" id="small" name="business">
<label for="small">I am a small business</label>
</div>
<div>
<input type="radio" id="residential" name="business">
<label for="residential">I am a residential owner</label>
</div>
<div>
<input type="radio" id="corporation" name="business">
<label for="corporation">I am a corporation</label>
</div>
</div>
<input type="submit" value="Submit" class="button">
<h3 class="sent">Thank you for submitting!</h2>
</form>
</section>
<section class="work">
<h2>Where We Work</h2>
<div class="state">
<h4>New York</h4>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</div>
<div class="state">
<h4>Florida</h4>
<p>Ocean Drive</p>
<p>Suite 201</p>
<p>Orlando, FL 22345</p>
<p>502 555 0144</p>
</div>
<div class="state">
<h4>California</h4>
<p>Mountain Street</p>
<p>Suite 105</p>
<p>San Diego, CA 22345</p>
<p>702 555 0144</p>
</div>
</section>
</div>
<div id="footer">
<section class="footer-content container">
<div class="flex">
<div class="share">
<h4>Interested in starting a project?</h4>
<h4>Let’s talk:</h4>
<input type="text" id="email" placeholder="Enter email">
<p>We'll never share your email with anyone else.</p>
</div>
<div class="state">
<h4>New York</h4>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</div>
<div class="state">
<h4>Florida</h4>
<p>Ocean Drive</p>
<p>Suite 201</p>
<p>Orlando, FL 22345</p>
<p>502 555 0144</p>
</div>
<div class="state">
<h4>California</h4>
<p>Mountain Street</p>
<p>Suite 105</p>
<p>San Diego, CA 22345</p>
<p>702 555 0144</p>
</div>
</div>
<p class="copyright">Copyright © 2018 Smith and Jones</p>
</section>
</div> <!--Footer End -->
<script src="js/index.js"></script>
<script src="js/contact.js"></script>
</body>
</html>