willowmecreationsV2/products.html
2024-09-22 21:59:54 -04:00

74 lines
No EOL
2.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Products - 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-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" class="active">Products</a>
<a href="contact.html">Contact</a>
<div class="animation start-home"></div>
</nav>
</div>
</header>
<main>
<section class="products">
<div class="container">
<h2>Products</h2>
<div class="product-grid">
<div class="product-card">
<img src="img/product1.jpg" alt="Sweater 1">
<h3>Sweater 1</h3>
<p>Price: $80</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="img/product2.png" alt="Sweater 2">
<h3>Flower Crop Top</h3>
<p>Price: $90</p>
<button>Add to Cart</button>
</div>
<div class="product-card">
<img src="img/productpage3.jpg" alt="Not a sweater, obviously">
<h3>Sweater 3</h3>
<p>Price: $105</p>
<button>Add to Cart</button>
</div>
</div>
</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">
<h2>Follow Me</h2>
<a href="https://www.instagram.com/willowmaker33" target="_blank"><i class="fab fa-instagram"></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>