-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
145 lines (137 loc) · 4.37 KB
/
contact.html
File metadata and controls
145 lines (137 loc) · 4.37 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
<!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 class="home">
<div class="full-navigation-header">
<div class="logo">
<a href="#">S&J</a>
<img class="menu-button" src="./img/nav-hamburger.png" alt="nav burger">
<img class="close-button" src="./img/nav-hamburger-close.png" alt="nav burger">
<div class="the-closure">
<img class="close-button" src="./img/nav-hamburger-close.png" alt="nav burger">
</div>
</div>
<nav class="menu-content">
<section class="a-content">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</div>
</nav>
</div>
</header>
<section class="top-section">
<img src="./img/contact/contact-jumbotron.png" alt="huge header photo" class="headerImgContact">
<img src="./img/contact/contact-mobile-jumbotron.png" alt="huge header photo" class="mobile-headerImgContact">
<section class="home-heading">
<h1 class="h1Home">Contact Us</h1>
</section>
</section>
<div class="container">
<section class="mainContainer">
<section class="getInTouch">
<section class="header">
<h3>Get In Touch</h3>
</section>
<h4 class="desktopEmail">Email Address</h4>
<h4 class="mobileEmail">Email</h4>
<input type="text" name="email" class="emailContact"placeholder="Enter email"></input>
<div class="email-message">We'll never share your email with anyone else.</div>
<label class="label" for="buildings"><h4>How many buildings do you need planned?</h4></label>
<select id="buildings" name="buildingNumbers">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<label class="label-description" for="subject"><h4>Provide a brief overview of your project needs:</h4></label>
<textarea class="subject" name="subject" placeholder="Write Something..."></textarea>
<div class="radio">
<input type="radio" name="radioSelect" value="business">I am a small business<br>
<input type="radio" name="radioSelect" value="residential">I am a residential owner<br>
<input type="radio" name="radioSelect" value="corporation">I am a corporation<br>
</div>
<div class="submit"><button>Submit</button></div>
</section>
<section class="whereWeWork">
<h3 class="where">Where We Work</h3>
<address>
<div class="workHeader">New York</div>
123 Lane<br>
Suite 100<br>
Albany, NY 12345<br>
202 555 0144
</address>
<address>
<div class="workHeader">Florida</div>
Ocean Drive<br>
Suite 201<br>
Orlando, FL 22345<br>
502 555 0144
</address>
<address>
<div class="workHeader">California</div>
Mountain Street<br>
Suite 105<br>
San Diego, CA 22345<br>
702 555 0144
</address>
</section>
</section>
</div>
<footer class="home-footer">
<section class="upper-footer">
<section class="headingBlock">
<h2 class="footer-headings">
Interested in starting a project?
</h2>
<h2 class="footer-headings" id="heading">
Let’s talk:
</h2>
<input type="text" name="email" class="email" placeholder="Enter Email"></input>
<div class="email-message">We'll never share your email with anyone else.</div>
</section>
<section class="addressBlock">
<address>
<h2 class="footer-headings">New York</h2>
<p class="address-paragraph">123 Lane <br>
Suite 100 <br>
Albany, NY 12345 <br>
202 555 0144
</p>
</address>
<address>
<h2 class="footer-headings">Florida</h2>
<p class="address-paragraph">Ocean Drive <br>
Suite 201 <br>
Orlando, FL 22345 <br>
502 555 0144
</p>
</address>
<address>
<h2 class="footer-headings">California</h2>
<p class="address-paragraph">Mountain Street <br>
Suite 105 <br>
San Diego, CA 22345 <br>
702 555 0144
</p>
</address>
</section>
</section>
<section class="lower-footer">
<p class="copyright">Copyright © 2018 Smith and Jones</p>
</section>
</footer>
<script src="js/index.js"></script>
</body>
</html>