-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact_us.html
More file actions
67 lines (47 loc) · 2.17 KB
/
contact_us.html
File metadata and controls
67 lines (47 loc) · 2.17 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
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a href="index.html"><img src="img/logo.jpg"></a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="review.html">Reviews</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact Us</h1>
<article>
<ol>
<section>
<li>Where we're based:</li>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d3177.722600429024!2d-6.364761221939916!3d53.29136670986192!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sie!4v1702043483143!5m2!1sen!2sie" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<p>You can come and see us in person if you would like. Our address is Blessington Rd, Tallaght, Dublin 24, D24 FKT9</p>
</section>
<section class="support">
<li>Support:</li>
<p>You can contact us on all major Social Medias such as X, Instagram and TikTok @EcoPulse. We are happy to answer any of your questions or queries directly by email. You can reach us by emailing support@ecopulse.ie and we will get back to you as soon as possible.</p>
<img src="img/twitter.png" >
<img src="img/insta.png" >
<img src="img/tiktok.png" >
</section>
</ol>
</article>
</main>
<footer>
<hr>
<p>Ecopulse 2023</p>
<p>Learn more <a href="index.html">Home page</a>.</p>
</footer>
</body>
</html>