-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 1.56 KB
/
index.html
File metadata and controls
56 lines (55 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Assignment 1</title>
</head>
<body>
<h2>Welcome to Laundry Wallah / Laundry Mart</h2>
<p>
Welcome to Laundry Wallah / Laundry Mart, your one-stop solution for all
your laundry needs. Our dedicated team ensures top-notch service,
providing a hassle-free and efficient laundry experience. With a focus on
quality and customer satisfaction, we take care of your garments as if
they were our own.
</p>
<br />
<img src="download.jpg" alt="" />
<br />
<h1>Our Services</h1>
<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>
<h1>Price List</h1>
<table border=" ">
<thead>
<tr>
<th>Services</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<th>Wasing adn Drying</th>
<th>$10.00</th>
</tr>
<tr>
<th>Ironing and Folding</th>
<th>$5.00</th>
</tr>
</tbody>
</table>
<h1>Book Now</h1>
Name: <input type="text" /> Email: <input type="email" /> phone:
<input type="number" />
<input type="submit">
<footer>Contact us at: PrinceYadav@laundrymart.com</footer>
</body>
</html>