2024-09-23 00:50:12 +01:00
<!DOCTYPE html>
< html >
< head >
< title > Home - WillowMeCreations< / title >
<!-- Primary Meta Tags -->
< meta name = "title" content = "WillowMeCreations - Hand-Crafted Crochet Items from Indiana" >
< meta name = "description" content = "Discover beautifully hand-crafted crochet items made with love at WillowMeCreations. Explore our unique designs and shop high-quality crochet wearables." >
< meta name = "keywords" content = "handmade crochet, WillowMeCreations, crochet items, crochet fashion, Indiana crochet, custom crochet, handcrafted wearables, crochet gifts" >
< meta name = "robots" content = "index, follow" >
< meta name = "author" content = "WillowMeCreations" >
<!-- Open Graph / Facebook -->
< meta property = "og:type" content = "website" >
< meta property = "og:url" content = "https://willowmecreations.com/" >
< meta property = "og:title" content = "WillowMeCreations - Hand-Crafted Crochet Items from Indiana" >
< meta property = "og:description" content = "Discover beautifully hand-crafted crochet items made with love at WillowMeCreations. Explore our unique designs and shop high-quality crochet wearables." >
< meta property = "og:image" content = "https://willowmecreations.com/img/hero1.jpg" >
<!-- Twitter -->
< meta property = "twitter:card" content = "summary_large_image" >
< meta property = "twitter:url" content = "https://willowmecreations.com/" >
< meta property = "twitter:title" content = "WillowMeCreations - Hand-Crafted Crochet Items from Indiana" >
< meta property = "twitter:description" content = "Discover beautifully hand-crafted crochet items made with love at WillowMeCreations. Explore our unique designs and shop high-quality crochet wearables." >
< meta property = "twitter:image" content = "https://willowmecreations.com/img/hero1.jpg" >
<!-- Schema.org for Google -->
< script type = "application/ld+json" >
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "WillowMeCreations",
"url": "https://willowmecreations.com/",
"logo": "https://willowmecreations.com/img/logo-transparent.png",
"sameAs": [
"https://instagram.com/",
"https://facebook.com/",
"https://tiktok.com/bethanyrhodes6"
],
"description": "WillowMeCreations offers handmade crochet items crafted with love in Indiana. Shop a variety of wearables, including scarves, shawls, and more."
}
< / script >
2024-10-12 03:30:22 +01:00
< link rel = "stylesheet" type = "text/css" href = "style2.css" >
2024-09-23 00:50:12 +01:00
< 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-transparent.png" alt = "WillowMeCreations logo" >
< / div >
< nav class = "topnav" id = "myTopnav" >
< 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 >
2024-10-12 03:30:22 +01:00
< span class = "hamburger" onclick = "toggleNav()" > ☰ < / span >
2024-09-23 00:50:12 +01:00
< div class = "animation start-home" > < / div >
< / 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)" > ❮ < / a >
< a class = "next" onclick = "moveSlides(1)" > ❯ < / a >
< / div >
< / section >
< section class = "about" >
< div class = "container" >
< 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 > My 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 > Brighten up cloudy days!< / p >
< / div >
< / div >
2024-10-12 03:30:22 +01:00
< p > < a href = "products.html" class = "productbtn" > View All Products< / a > < / p >
2024-09-23 00:50:12 +01:00
< / div >
< / section >
< section class = "contact" >
< div class = "container" >
< h2 > Contact Us< / h2 >
2024-10-12 03:30:22 +01:00
< p > Have questions or special requests? Reach out to me!< / p >
2024-09-23 00:50:12 +01:00
< p > Email: < a href = "mailto:bethany@willowmecreations.com" > bethany@willowmecreations.com< / a > < br >
TikTok: < a href = "https://www.tiktok.com/@bethanyrhodes6" target = "_blank" > < i class = "fab fa-tiktok" > < / i > bethanyrhodes6< / a > < / p >
< / div >
< / section >
< / main >
< footer class = "footer" >
< div class = "container" >
< div class = "footer-info" >
< h2 > WillowMeCreations< / h2 >
< p > © 2024 WillowMeCreations. All rights reserved.< / p >
< / div >
< div class = "social-media" >
< h2 > Follow Me< / h2 >
2024-10-12 03:30:22 +01:00
< a href = "https://www.instagram.com/willowmaker33" target = "_blank" > < i class = "fab fa-instagram" > < / i > < / a >
2024-09-23 00:50:12 +01:00
< 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 >