barbershop
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blade & Beige Barbershop</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="hero">
<nav>
<div class="logo">Blade & Beige</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Book Now</a></li>
</ul>
</nav>
<div class="hero-content">
<h1>Precision Cuts. <br />Timeless Style.</h1>
<p>Crafting confidence, one cut at a time.</p>
<a href="#" class="btn">Book Your Cut</a>
</div>
</header>
<section class="about">
<div class="about-text">
<h2>Our Story</h2>
<p>
Founded on tradition and dedicated to the craft, our barbershop has been shaping the styles of gentlemen for years. We believe in the power of a fresh cut to transform more than just appearance.
</p>
</div>
<div class="about-img"></div>
</section>
<section class="services">
<div class="service">
<h3>Haircuts</h3>
<p>Precision cuts on all hair types.</p>
<span>From $25</span>
</div>
<div class="service">
<h3>Beard Trim</h3>
<p>Detailed trims to frame your style.</p>
<span>From $15</span>
</div>
<div class="service">
<h3>Hot Towel Shave</h3>
<p>Classic straight-razor treatment.</p>
<span>From $30</span>
</div>
</section>
<section class="gallery">
<h2>Gallery</h2>
<div class="gallery-grid">
<img src="https://via.placeholder.com/300x200" alt="Gallery Image" />
<img src="https://via.placeholder.com/300x200" alt="Gallery Image" />
<img src="https://via.placeholder.com/300x200" alt="Gallery Image" />
</div>
</section>
<section class="booking">
<h2>Ready for a Fresh Look?</h2>
<form>
<input type="text" placeholder="Name" required />
<input type="tel" placeholder="Phone" required />
<input type="datetime-local" required />
<select required>
<option>Select Service</option>
<option>Haircut</option>
<option>Beard Trim</option>
<option>Hot Towel Shave</option>
</select>
<button type="submit">Book Now</button>
</form>
</section>
<footer>
<p>© 2025 Blade & Beige Barbershop</p>
</footer>
</body>
</html>