willowmecreations/products.html

100 lines
3.6 KiB
HTML
Raw Normal View History

2023-12-08 06:21:25 +00:00
<!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">
2023-12-10 20:34:29 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-12-10 21:24:28 +00:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora">
2023-12-08 06:21:25 +00:00
</head>
<body>
<div class="container">
2023-12-10 21:28:08 +00:00
<button onclick="topFunction()" id="myBtn" title="Go to top">Go to top</button>
2023-12-08 06:21:25 +00:00
<div class="header">
<h1>Willow Me Creations</h1>
</div>
<div class="topnav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
2023-12-10 21:24:28 +00:00
<a href="news.html">News</a>
2023-12-08 06:21:25 +00:00
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
</div>
</header>
2023-12-10 21:24:28 +00:00
</div>
<div class="meat">
<h2>Products</h2>
2023-12-08 06:21:25 +00:00
<div class="row">
<div class="column">
<div class="card">
<img src="img/sweater1.png" alt="sweater1">
2023-12-10 21:24:28 +00:00
<div class="info">
2023-12-08 06:21:25 +00:00
<h2>Sweater 1</h2>
<p>Price: $45</p>
<p>Size: Small</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/sweater2.png" alt="sweater2">
2023-12-10 21:24:28 +00:00
<div class="info">
2023-12-08 06:21:25 +00:00
<h2>Sweater 2</h2>
<p>Price: $50</p>
<p>Size: Medium</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/sweater3.png" alt="sweater3">
2023-12-10 21:24:28 +00:00
<div class="info">
2023-12-08 06:21:25 +00:00
<h2>Sweater 3</h2>
<p>Price: $55</p>
<p>Size: Large</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
</div>
</div>
2023-12-10 21:24:28 +00:00
<div class="footer">
<div class="contact-info">
<p>Email: <a href="mailto:bethany@willowmecreations.com">bethany@willowmecreations.com</a></p>
</div>
<div class="social-media">
<h2>Follow Me</h2>
<p> <!--UPDATE WORKING LINKS -->
<a href="https://facebook.com/" target="_blank"><i class="fab fa-facebook"></i> Facebook</a> |
<a href="https://instagram.com/" target="_blank"><i class="fab fa-instagram"></i> Instagram</a> |
<a href="https://tiktok.com/bethanyrhodes6" target="_blank"><i class="fab fa-tiktok"></i> TikTok</a>
</p>
</div>
<div class="quick-links">
<h2>Quick Links</h2>
<p>
<a href="index.html">Home</a> |
<a href="about.html">About</a> |
<a href="products.html">Products</a> |
<a href="contact.html">Contact</a>
</p>
</div>
<div class="privacy-policy">
<h2>Privacy Policy</h2>
<p><a href="privacy.html">Read our privacy policy</a></p>
</div>
<div class="copyright">
<h2>&copy; 2023 Willow Me Creations</h2>
</div>
</div>
<script src="script.js"></script>
2023-12-08 06:21:25 +00:00
</body>
</html>