-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
158 lines (146 loc) · 5.39 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timber & Touch</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
.button-container a {
text-decoration: none;
display: inline-block;
}
.button-container a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<h1>Timber & Touch</h1>
</div>
<p class="tagline">"Where Nature Meets Elegance in Every Piece"</p>
</nav>
</header>
<main>
<section class="welcome">
<div class="hero-image">
<img src="assets/living-room.jpg" alt="Elegant living room furniture" class="main-image">
</div>
<div class="welcome-text">
<h2>Welcome to Timber & Touch</h2>
<p>At Timber & Touch, we blend craftsmanship with creativity to bring you furniture that is not only functional but also an expression of style. Our collections are designed to enhance every space, whether you're furnishing your home or office. With a commitment to quality and sustainability, we offer pieces that last a lifetime.</p>
</div>
</section>
<div class="section-divider"></div>
<section class="products">
<h2>Our Products</h2>
<div class="product-grid">
<div class="product-category">
<h3>Sofas & Chairs</h3>
<p>Luxurious comfort meets timeless design</p>
</div>
<div class="product-category">
<h3>Dining Tables</h3>
<p>Gathering spaces for cherished moments</p>
</div>
<div class="product-category">
<h3>Cabinets & Storage</h3>
<p>Elegant solutions for organized living</p>
</div>
<div class="product-category">
<h3>Custom Pieces</h3>
<p>Tailored to your unique vision</p>
</div>
</div>
<div class="button-container">
<a href="collection.html">
<button class="cta-button">Browse Collection</button>
</a>
</div>
</section>
<div class="section-divider"></div>
<section class="why-choose-us">
<h2>Why Choose Us?</h2>
<div class="features-grid">
<div class="feature">
<i class="fas fa-tools"></i>
<h3>Handcrafted with precision</h3>
<p>Expert craftsmen creating masterpieces</p>
</div>
<div class="feature">
<i class="fas fa-leaf"></i>
<h3>Sustainable materials</h3>
<p>Eco-friendly sourcing practices</p>
</div>
<div class="feature">
<i class="fas fa-paint-brush"></i>
<h3>Custom design options</h3>
<p>Personalized to your preferences</p>
</div>
<div class="feature">
<i class="fas fa-star"></i>
<h3>Timeless elegance</h3>
<p>Designs that stand the test of time</p>
</div>
</div>
<div class="button-container">
<a href="about.html">
<button class="cta-button">Read More About Us</button>
</a>
</div>
</section>
<div class="section-divider"></div>
<section class="featured-collection">
<h2>Featured Collection</h2>
<p>Discover our latest collection of modern and minimalist designs, perfect for any living space.</p>
<div class="button-container">
<a href="explore.html">
<button class="cta-button">Explore Now</button>
</a>
</div>
</section>
<div class="section-divider"></div>
<section class="testimonials">
<h2>Customer Testimonials</h2>
<div class="testimonial-card">
<blockquote>
"Timber & Touch transformed my home! Their custom designs are both beautiful and functional."
</blockquote>
<cite>- Angel I.</cite>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="contact-info">
<h3>Contact Us</h3>
<p>
<a href="mailto:[email protected]">[email protected]</a>
<br>
<a href="tel:09876543210">09876543210</a>
</p>
</div>
<div class="social-links">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://instagram.com" target="_blank" aria-label="Follow us on Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="https://facebook.com" target="_blank" aria-label="Follow us on Facebook">
<i class="fab fa-facebook"></i>
</a>
</div>
</div>
</div>
<div class="copyright">
<p>© 2024 Timber & Touch. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>