You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>
<title>Candol - Preppy Candles</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>

<!-- Navigation Bar -->


<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Candol</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>

<!-- Hero Section -->


<div class="hero-section">
<h1>Candol</h1>
<p>Preppy Candles for Every Occasion</p>
<a href="#" class="btn btn-default btn-shop">Shop Now</a>
</div>

<!-- About Section -->


<div class="about-section">
<div class="container">
<h2>About Candol</h2>
<p>Candol was founded with the goal of creating high-quality,
preppy candles that can be enjoyed in any setting. Our candles are made from
natural soy wax and infused with the finest fragrances to create a luxurious aroma
that fills any room.</p>
<a href="#" class="btn btn-default btn-shop">Shop Now</a>
</div>
</div>

<!-- Shop Section -->


<div class="shop-section">
<div class="container">
<h2>Shop Candol</h2>
<div class="row">
<div class="col-sm-4">
<div class="product-item">
<img src="candle1.jpg">
<h3>Classic Vanilla</h3>
<p class="price">$25</p>
<a href="#" class="btn btn-default btn-
shop">Add to Cart</a>
</div>
</div>
<div class="col-sm-4">
<div class="product-item">
<img src="candle2.jpg">
<h3>Citrus Burst</h3>
<p class="price">$30</p>
<a href="#" class="btn btn-default btn-
shop">Add to Cart</a>
</div>
</div>
<div class="col-sm-4">
<div class="product-item">
<img src="candle3.jpg">
<h3>Floral Paradise</h3>
<p class="price">$35</p>
<a href="#" class="btn btn-default btn-
shop">Add to Cart</a>
</div>
</div>
</div>
</div>
</div>

<!-- Contact Section -->


<div class="contact-section">
<div class="container">
<h2>Contact Us</h2>
<form>
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" id="name"

You might also like