-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (73 loc) · 2.3 KB
/
index.html
File metadata and controls
81 lines (73 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mason Build & Repair LLC</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#submit-review">Leave a Review</a></li>
<li><a href="#payment">Pay</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<header>
<img src="assets/logo.png" alt="Mason Build Logo" width="120" />
<h1>Reliable Home Repair Services in Miami</h1>
<p>Founded by Thomas Mason, serving Miami since 2023</p>
</header>
<section id="services">
<h2>Our Services</h2>
<ul>
<li>🛠️ Carpentry</li>
<li>🚿 Plumbing</li>
<li>🏠 Renovation</li>
</ul>
</section>
<section id="reviews">
<h2>Client Reviews</h2>
<blockquote>
<p>“Excellent service! Quick and professional.”</p>
<footer>— ★★★★★ Maria R., Miami Beach</footer>
</blockquote>
<blockquote>
<p>“Thomas repaired our kitchen in 2 days. It looks brand new!”</p>
<footer>— ★★★★★ Jason T., Coral Gables</footer>
</blockquote>
<blockquote>
<p>“Affordable, on time, and friendly. Highly recommended!”</p>
<footer>— ★★★★★ Laura M., Wynwood</footer>
</blockquote>
</section>
<section id="submit-review">
<h2>Leave Your Review</h2>
<form action="#" method="post">
<input type="text" name="name" placeholder="Your Name" required />
<input type="text" name="location" placeholder="City/Area" required />
<textarea name="message" placeholder="Your Review" required></textarea>
<button type="submit">Submit Review</button>
</form>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Email: masonbuild@example.com</p>
<p>Phone: (305) 555-1234</p>
<section id="payment">
<h2>Pay Online</h2>
<p>Secure payment via Stripe. Easy & fast!</p>
<a href="https://buy.stripe.com/test_cN26qA6YW3sb5UkeUU" target="_blank">
<button>Pay $50 Deposit</button>
</a>
</section>
</section>
<footer>
<p>© 2025 Mason Build & Repair LLC</p>
</footer>
<script src="script.js"></script>
</body>
</html>