-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (68 loc) · 2.62 KB
/
index.html
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">
<meta name="description" content="Rohit Furniture - Custom Carpentry and Woodwork Services">
<title>Rohit Furniture</title>
<!-- Link to external CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Rohit Furniture</h1>
<p>Quality Custom Carpentry and Woodwork Services</p>
</header>
<nav>
<a href="#home">Home</a>
<a href="#services">Services</a>
<a href="#about">About Us</a>
<a href="#contact">Contact Us</a>
</nav>
<section id="home">
<h2>Home</h2>
<p>At Rohit Furniture, we offer the best custom carpentry services, delivering handcrafted furniture with precision and passion.</p>
</section>
<section id="services" class="services">
<h2>Our Services</h2>
<div class="service-box">
<h3>Custom Furniture</h3>
<p>We specialize in designing and creating furniture tailored to your specific needs, ensuring comfort, style, and durability.</p>
</div>
<div class="service-box">
<h3>Carpentry Repairs</h3>
<p>Our experts provide quick and efficient carpentry repair services, restoring your wooden fixtures and furniture to their best condition.</p>
</div>
<div class="service-box">
<h3>Wood Polishing</h3>
<p>We offer professional wood polishing services, making your furniture shine and preserving its longevity.</p>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>Rohit Furniture has been providing top-notch carpentry and woodwork services for over a decade. Our skilled craftsmen work with high-quality materials to ensure every project meets the highest standards.</p>
</section>
<section id="contact" class="contact-form">
<h2>Contact Us</h2>
<div class="form-box">
<h3>Get in Touch</h3>
<form action="submit_form.php" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<input type="submit" value="Send">
</form>
</div>
<div class="form-box">
<h3>Our Address</h3>
<p>123 Carpenter Lane,<br> Haryana, India<br> Phone: +91-123-4567890</p>
<p>Email: [email protected]</p>
</div>
</section>
<footer>
<p>© 2024 Rohit Furniture | All Rights Reserved</p>
</footer>
<!-- Link to external JavaScript -->
<script src="script.js"></script>
</body>
</html>