-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
56 lines (53 loc) · 2.33 KB
/
Copy pathabout.html
File metadata and controls
56 lines (53 loc) · 2.33 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>Meadow Collection</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css" integrity="sha512-2SwdPD6INVrV/lHTZbO2nodKhrnDdJK9/kg2XD1r9uGqPo1cUbujc+IYdlYdEErWNu69gVcYgdxlmVmzTWnetw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav>
<input type="checkbox" id="sidebar-toggle">
<label for="sidebar-toggle" class="open-sidebar-btn">
<i class="fa-solid fa-bars"></i>
</label>
<div class="links-container">
<label for="sidebar-toggle" class="close-sidebar-btn">
<i class="fa-solid fa-xmark"></i>
</label>
<a href="index.html" class="home-link">
<img src="assets/png/T12.png" alt="Logo" class="logo" height="64" >
</a>
</div>
</nav>
</header>
<main>
<section class="about-section">
<div class="container">
<h2 class="section-title">About</h2>
<p>
Meadow Collection is a small business that celebrates creativity through handcrafted crochet and custom printing services. Every piece we create is designed with passion, care, and attention to detail—whether it’s a cozy crochet item made by hand or a personalized print made just for you.
</p>
<br>
<p>
Our mission is to bring warmth, artistry, and individuality into everyday life. At Meadow Collection, we don’t just make products—we craft meaningful pieces that reflect your style and story.
</p>
<br>
<p class="highlight">
Handmade. Heartfelt. Uniquely yours.
</p>
</div>
</section>
</main>
<footer>
<div class="container footer-content">
<p>© 2024 Meadow Collection. All rights reserved.</p>
<p class="social-icons" id="social-icons-container"></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>