-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (63 loc) · 2.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cleaning with Hands, Heart, And Soul</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<div class="hero-text">
<h1>Welcome to Cleaning with Heart</h1>
<p>Providing professional cleaning services</p>
<a href="#contact" class="button">Get a Quote</a>
</div>
</section>
<section id="services">
<div class="container">
<h2>Our Services</h2>
<p style="color: black;"> Maintenace Clean- Starting at $75
</p>
<p style="color: black;">Maintenance Clean with 1 deep clean special Starting at $150</p>
<p style="color: Black;">Deep Clean starting at $150</p>
<p style="color: black">Prices Vary according to house size/job</p>
<p style="color: black">Additional chores are an option, Let's Talk!</p>
<div class="service">
<img src="images/service1.jpg" alt="Service 1">
<h3>Residential Cleaning</h3>
<p>Deep Clean (Price Varies on House size)</p>
<p>Maintenance Clean with Deep clean</p>
<p>Maintenance Clean with 1 deep clean special</p>
<section id="about">
<div class="container">
<h2>About Us</h2>
<img src="images/aboutus.jpg" alt="About Us">
<p></p>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit" class="button">Send Message</button>
</form>
</div>
</section>
<footer>
<p>© 2023 Cleaning With Heart. All rights reserved.</p>
</footer>
</body>
</html>