-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
67 lines (56 loc) · 3.12 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
<!DOCTYPE html>
<html>
<head>
<title>Contact | Blind Cleaners Co.</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<button class="logoButton">
<a href="https://www.blindcleanersco.com"><img class="logoImage" src="logoButton.png" alt="logo"><img></a>
</button>
<nav class="navigation">
<div class="menu">
<ul>
<li><a class="item" href="./about">About</a></li>
<li><a class="item" href="./services">Services</a></li>
<li><a class="item" href="./methods">Methods</a></li>
<li><a class="item" href="./coupons">Coupons</a></li>
<li><a class="item" href="./jobs">Jobs</a></li>
<li><a class="item" href="./contact">Contact</a></li>
</ul>
</div>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div class="contactContainer">
<div class="contactBoxes">
<h5>blindcleanersco@gmail.com</h5>
<img class="contactImage" src="email.png" alt="email"><img>
</div>
<div class="contactBoxes">
<h5>+1 (206) 659-1265</h5>
<img class="contactImage" src="phone.png" alt="phone"><img>
</div>
<div class="contactBoxes">
<h5>Seattle, Washington</h5>
<img class="contactImage" src="location.png" alt="location"><img>
</div>
</div>
<iframe class="contactForm" src="https://docs.google.com/forms/d/e/1FAIpQLSdCwjD8YxojUQin7QNfofMV6QdrONINhgQOjDilDIbXjXjCYA/viewform?embedded=true" frameborder="0">Loading…</iframe>
<div class="footer">
<img class="footerImage" src="logo.png" alt="logo"><img>
<h4 style="color: #4285F4">© 2025 Blind Cleaners Co.</h4>
<h4 style="color: #4285F4; line-height: 2.25rem; text-decoration: none;"><a style="color:#4285F4; text-decoration: none;" class="contactText" href="mailto:blindcleanersco@gmail.com">blindcleanersco@gmail.com</a> | <a style="color:#4285F4; text-decoration: none;" class = "text" href="tel:+12066591265">+1 (206) 659-1265</a> | <a style="color:#4285F4; text-decoration: none;" class = "text" href="https://www.google.com/maps/place/King+County,+WA/">Seattle, Washington</a></h4>
</div>
<script src="script.js"></script>
</body>
</html>