-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
102 lines (94 loc) · 4.31 KB
/
contact.html
File metadata and controls
102 lines (94 loc) · 4.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us | RC Heating Ltd</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header role="banner">
<nav class="navbar">
<a href="index.html" class="logo">
<img src="Logo_RC_Heating.png" alt="RC Heating Ltd Logo">
<span class="company-name">RC Heating Ltd</span>
</a>
<ul class="nav-links">
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#services">Services</a></li>
<li><a href="index.html#about">About Us</a></li>
<li><a href="index.html#testimonials">Testimonials</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<main role="main">
<section class="contact-section">
<div class="container">
<h1>Contact Us</h1>
<p>Have a question? Get in touch with us using the form below or reach us via the contact details provided.</p>
<div class="contact-info">
<h2>Our Contact Details</h2>
<p><strong>Address:</strong> 123 Main Street, Diss, Norfolk</p>
<p><strong>Phone:</strong> 01234 567890</p>
<p><strong>Email:</strong> info@rcheating.com</p>
</div>
<div class="contact-form">
<h2>Send Us a Message</h2>
<form action="https://formspree.io/f/xeojnklk" method="POST" aria-labelledby="contact-form-heading">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required aria-required="true">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" required aria-required="true">
<label for="message">Your Message</label>
<textarea id="message" name="message" rows="5" required aria-required="true"></textarea>
<button type="submit" aria-label="Send your message">Send Message</button>
</form>
</div>
</div>
</section>
</main>
<footer class="site-footer" role="contentinfo">
<div class="footer-container">
<div class="footer-row">
<div class="footer-column">
<h4>Contact Us</h4>
<p>RC Heating Ltd</p>
<p>Diss, Norfolk</p>
<p>Email: info@rcheating.com</p>
<p>Phone: 01234 567890</p>
</div>
<div class="footer-column">
<h4>Quick Links</h4>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Accreditations</h4>
<img src="Gas Safe Register.png" alt="Gas Safe Register accreditation logo" class="accreditation-logo">
<p>Gas Safe Registration Number: 947177</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 RC Heating Ltd. All Rights Reserved.</p>
<ul class="footer-social-links">
<li><a href="#"><i class="fab fa-facebook-f"></i> Facebook</a></li>
<li><a href="#"><i class="fab fa-twitter"></i> Twitter</a></li>
<li><a href="#"><i class="fab fa-linkedin"></i> LinkedIn</a></li>
</ul>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>