-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (121 loc) · 5.86 KB
/
index.html
File metadata and controls
140 lines (121 loc) · 5.86 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chanchans Tailoring & Sewing Alterations</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background-color: #333; color: #fff; padding: 20px; text-align: center; }
nav { background-color: #f4f4f4; padding: 10px; text-align: center; }
nav a { margin: 0 15px; text-decoration: none; color: #333; }
.container { padding: 20px; }
.section { margin-bottom: 40px; }
footer { background-color: #333; color: #fff; text-align: center; padding: 10px; }
.contact-info, .services-list, .dropoff-steps { list-style-type: none; padding: 0; }
.contact-info li, .services-list li, .dropoff-steps li { margin-bottom: 10px; }
</style>
</head>
<body>
<header>
<h1>Chanchans Sewing & Alterations</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About Us</a>
<a href="#order">Order Status</a>
<a href="#services">Services</a>
<a href="#dropoff">Drop-Off Service</a>
<!-- <a href="#contact">Contact Us</a> -->
</nav>
<div class="container">
<!-- Home Section -->
<section id="home" class="section">
<h2>Welcome to Chanchans Tailoring & Sewing Alterations</h2>
<p>Your trusted partner for all your clothing alteration needs. We offer a wide range of services with quick turnaround times and exceptional quality.</p>
</section>
<!-- Order Status -->
<section id="order" class="section">
<h2>Order Status</h2>
<!-- <a href="https://sewsmart-order-tracker-873519704658.us-west1.run.app/?mode=kiosk"><strong>Click here to check the order status</strong></a>-->
</section>
<!-- About Update -->
<section id="update" class="section">
<h2>Update</h2>
<p></p>
</section>
<!-- About Us Section -->
<section id="about" class="section">
<h2>About Us</h2>
<ul class="contact-info">
<li><strong>Address:</strong> 1 Glen Rd Suite 207, West Lebanon, NH 03784 (2nd floor of Glen Plaza)</li>
<li><strong>Phone:</strong>
<span> 8022307807 / 4252479201</span>
</li>
<li><strong>Hours:</strong>
<ul>
<li>Mon – Fri: 9:00 AM - 4:00 PM</li>
<li>Sat: 10:00 AM - 12:00 PM</li>
<li>Closed on Federal holidays/observances and heavy snow days.</li>
<li>For the most updated open hours and holiday hours, please google chanchan sewing.</li>
</ul>
</li>
<li>
</li>
</ul>
</section>
<!-- Services Section -->
<section id="services" class="section">
<h2>Our Services</h2>
<ul>
<li>Repair/Change zipper and buttons</li>
<li>Shortening/Lengthening/Hemming</li>
<li>Adding darts / Patching / Re-cutting / Re-styling</li>
<li>Taking in/out sides</li>
<li>Taking in/out or lowering waists</li>
<li>Tapering legs/arms/seams</li>
<li>Slacks, Pants, Trousers, Shorts, Jeans, Suits, Skirts, Dresses (Prom, Wedding, etc.), Shirts, Blouses, Tops, Coats, Jackets, Hats, Curtains, Sofa Covers, and more...</li>
</ul>
<h2>Turnaround Time</h2>
<ul>
<li>2-3 days for simple alterations (e.g., hemming)</li>
<li>1-2 weeks for normal/complex alterations</li>
<li>1-2 days for rush service with a 50% extra charge</li>
</ul>
<h2>Payment Options</h2>
<p>We accept Cash, Check, and Venmo.</p>
</section>
<!-- Drop-Off Service Section -->
<section id="dropoff" class="section">
<h2>Drop-Off Service</h2>
<p>Can’t make it during our regular hours? No problem! Use our convenient drop-off box.</p>
<h3>How It Works:</h3>
<ul>
<li>Mark/Pin the areas on your clothes that need alteration.</li>
<li>Place your clothes in a bag.</li>
<li>Include a note with your contact information and alteration instructions inside the bag.</li>
<li>Drop the bag in our drop-off box.</li>
</ul>
<p>We will pick up the drop-offs daily and get to work on your garments promptly.</p>
<p>If you have any questions, leave a message via <strong>(425) 247-9201</strong> or <strong>(802) 230-7807</strong>.</p>
</section>
<!-- Contact Us Section -->
<!-- <section id="contact" class="section">
<h2>Contact Us</h2>
<p>Have questions or need to discuss your specific needs? Get in touch with us!</p>
<form action="mailto:your-email@example.com" method="post" enctype="text/plain">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="5" required></textarea><br><br>
<input type="submit" value="Send">
</form>
</section> -->
</div>
<footer>
<p>© 2025 Chanchans Tailoring & Sewing Alterations | <a href="https://chanchans.com" style="color: #fff;">Visit Our Website</a></p>
</footer>
</body>
</html>