-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
76 lines (69 loc) · 3.01 KB
/
Copy pathservices.html
File metadata and controls
76 lines (69 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services | EcoCleanse - Chicago</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Quicksand:wght@500;700&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<a href="index.html" class="logo">Eco<span>Cleanse</span></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="services.html" style="color: var(--eco-green);">Services</a>
<a href="#" class="btn btn-main" style="padding: 10px 20px; font-size: 0.9rem;">Book Now</a>
</div>
</nav>
<header style="background: linear-gradient(rgba(76, 175, 114, 0.9), rgba(76, 175, 114, 0.8)), url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&q=80&w=1500'); background-size: cover; background-position: center; padding: 100px 8%; text-align: center; color: white;">
<h1 style="font-size: 3rem;">Professional Cleaning Solutions</h1>
<p>Eco-friendly, reliable, and tailored to your space.</p>
</header>
<section>
<div class="section-intro">
<h2>Residential Cleaning</h2>
<p>Health-first cleaning that removes microscopic pollutants and allergens.</p>
</div>
<div class="service-grid">
<div class="service-card">
<img class="card-img" src="https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&q=80&w=800" alt="Home Cleaning">
<div class="card-content">
<h3>Standard Maintenance</h3>
<p>Perfect for weekly or bi-weekly care. Includes dusting, sanitizing, and eco-mopping.</p>
<br>
<a href="#" class="btn btn-green">Book Weekly</a>
</div>
</div>
<div class="service-card">
<img class="card-img" src="https://images.unsplash.com/photo-1528740561666-dc2479dc08ab?auto=format&fit=crop&q=80&w=800" alt="Deep Cleaning">
<div class="card-content">
<h3>Deep / Move-In Clean</h3>
<p>Detailed scrubbing of baseboards, inside appliances, and deep grout cleaning.</p>
<br>
<a href="#" class="btn btn-green">Get Deep Clean Quote</a>
</div>
</div>
</div>
</section>
<section style="background: var(--bg-light);">
<div class="section-intro">
<h2>Commercial & Office</h2>
</div>
<div class="table-container">
<table class="comparison-table">
<thead>
<tr><th>Feature</th><th>Office</th><th>Retail</th></tr>
</thead>
<tbody>
<tr><td>Restroom Disinfection</td><td>✓</td><td>✓</td></tr>
<tr><td>Custom Scheduling</td><td>✓</td><td>✓</td></tr>
</tbody>
</table>
</div>
</section>
<footer>
<p>© 2026 EcoCleanse | Chicago Family Owned & Operated.</p>
</footer>
</body>
</html>