willowmecreationsV2/index.html
2024-05-25 23:24:10 -04:00

121 lines
No EOL
5.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Home - WillowMeCreations</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700|Playfair+Display:400,700">
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<img src="img/logo.png" alt="WillowMeCreations logo">
</div>
<nav class="topnav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="news.html">News</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/hero1.jpg" alt="Hero Image 1">
<div class="carousel-caption">
<h1>Welcome to WillowMeCreations</h1>
<p>Beautifully hand-crafted crochet items made with love in Indiana.</p>
<a href="products.html" class="btn">Shop Now</a>
</div>
</div>
<div class="carousel-item">
<img src="img/hero2.jpg" alt="Hero Image 2">
<div class="carousel-caption">
<h1>Handmade with Love</h1>
<p>Each piece is crafted with care and attention to detail.</p>
<a href="products.html" class="btn">Shop Now</a>
</div>
</div>
<div class="carousel-item">
<img src="img/hero3.jpg" alt="Hero Image 3">
<div class="carousel-caption">
<h1>Unique Designs</h1>
<p>Discover our exclusive collection of crochet items.</p>
<a href="products.html" class="btn">Shop Now</a>
</div>
</div>
</div>
<a class="prev" onclick="moveSlides(-1)">&#10094;</a>
<a class="next" onclick="moveSlides(1)">&#10095;</a>
</div>
</section>
<section class="about">
<div class="container">
<h2>About Us</h2>
<p>WillowMeCreations is a small business that makes handmade clothing and wearables. Located in the
beautiful Midwest, we take pride in creating unique, high-quality crochet items. Each piece is
crafted with care and attention to detail.</p>
</div>
</section>
<section class="products">
<div class="container">
<h2>Our Products</h2>
<div class="product-grid">
<div class="product-card">
<img src="img/product1.png" alt="Product 1">
<h3>Greyscale Hexie</h3>
<p>Soft and warm, perfect for chilly days.</p>
</div>
<div class="product-card">
<img src="img/product2.png" alt="Product 2">
<h3>Flower Crop Top</h3>
<p>Add a touch of elegance to any outfit.</p>
</div>
<div class="product-card">
<img src="img/product3.png" alt="Product 3">
<h3>Neon Rainbow Hexie</h3>
<p>Shit is bright, son.</p>
</div>
</div>
<a href="products.html" class="productbtn">View All Products</a>
</div>
</section>
<section class="contact">
<div class="container">
<h2>Contact Us</h2>
<p>Have questions or special requests? Reach out to us!</p>
<a href="mailto:bethany@willowmecreations.com" class="btn">Email Us</a>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-info">
<h2>WillowMeCreations</h2>
<p>&copy; 2024 WillowMeCreations. All rights reserved.</p>
</div>
<div class="social-media">
<a href="https://instagram.com/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://facebook.com/" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://tiktok.com/bethanyrhodes6" target="_blank"><i class="fab fa-tiktok"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>