-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (84 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
103 lines (84 loc) · 2.37 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
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laundry Wallah</title>
</head>
<body>
<header>
<h1>Welcome to Laundry Wallah / Laundry Mart.</h1>
<p>Laundry Wallah / Laundry Mart is a modern laundry and dry-cleaning service provider to make everyday life easier. We offer washing, drying, ironing, and dry-cleaning solutions using high-quality detergents . With a focus on convenience, we provide timely pickup and delivery so customers can save time and effort. Our staff ensures proper care for every fabric, from daily wear to delicate garments. At Laundry Wallah / Laundry Mart, cleanliness, reliability, and customer satisfaction are our top priorities.
</p>
</header>
<main>
<section>
<img src="https://png.pngtree.com/png-clipart/20240512/original/pngtree-home-service-house-cleaning-and-laundry-wash-png-image_15072816.png"
width="400px">
</section>
<section>
<h2>Our Services</h2>
<ul>
<li>Washing and Drying</li>
<li>Ironing and Folding</li>
<li>Dry Cleaning</li>
<li>Stain Removal</li>
<li>Express Services</li>
<li>Special Garment Care</li>
<li>and more</li>
</ul>
</section>
<section>
<h2>Price List</h2>
<table
border="1"
>
<tr>
<th>Service</th>
<th>Price</th>
</tr>
<tr>
<td>Washing and Drying</td>
<td>$10.00</td>
</tr>
<tr>
<td>Ironing and Folding</td>
<td>$5.00</td>
</tr>
<tr>
<td>Dry Cleaning</td>
<td>$15.00</td>
</tr>
<tr>
<td>Stain Removal</td>
<td>$12.00</td>
</tr>
<tr>
<td>Express Services</td>
<td>$20.00</td>
</tr>
<tr>
<td>Special Garment Care</td>
<td>$50.00</td>
</tr>
</section>
</table>
<section>
<h2>Book Now</h2>
<form action="">
<label for="name" >Name :</label>
<input type="text" id="name"name="name" required>
<label for="email">Email :</label>
<input type="email" id="email" name="email" required>
<label for="phone"> Phone :</label>
<input type="tel" id="phone"name="phone" maxlength="13">
<br>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p> Contact us at : <a href="mailto:info@laundarymart.com">info@laundarymart.com</a> </p>
</footer>
</body>
</html>