willowmecreations/products.html

62 lines
2 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">
</head>
<body>
<div class="container">
<div class="header">
<h1>Willow Me Creations</h1>
</div>
<div class="topnav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
</div>
</header>
<h1>Products</h1>
<div class="row">
<div class="column">
<div class="card">
<img src="img/sweater1.png" alt="sweater1">
<div class="container">
<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">
<div class="container">
<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">
<div class="container">
<h2>Sweater 3</h2>
<p>Price: $55</p>
<p>Size: Large</p>
<p><button>Add to Cart</button></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>