Meta Description" name="description" />
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zafar Shoes Store</title>
<style>
body {font-family: Arial, sans-serif; margin:0; background:#f7f7f7; color:#333}
header {background:#111; color:white; padding:20px; text-align:center}
header h1 {margin:0}
nav a {color:white; margin:0 15px; text-decoration:none}
.hero {padding:60px 20px; text-align:center; background:url('https://picsum.photos/1200/400?shoes') center/cover; color:white}
.hero h2 {font-size:2.5rem; margin-bottom:10px}
.btn {background:#e63946; color:white; padding:12px 25px; border:none; border-radius:8px; cursor:pointer}
.products {display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:20px; padding:40px 20px}
.card {background:white; border-radius:12px; padding:15px; text-align:center; box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.card img {width:100%; border-radius:8px}
footer {background:#111; color:white; text-align:center; padding:15px; margin-top:30px}
</style>
</head>
<body>
<header>
<h1>Zafar Shoes Store</h1>
<nav>
<a href="#home">Home</a>
<a href="#products">Shoes</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero" id="home">
<h2>Step Into Style</h2>
<p>Latest sneakers, casual & formal shoes for every occasion</p>
<button class="btn">Shop Now</button>
</section>
<section class="products" id="products">
<div class="card">
<img src="https://picsum.photos/300/200?1" alt="Sneakers">
<h3>Urban Sneakers</h3>
<p>Rs 3,499</p>
<button class="btn">Buy</button>
</div>
<div class="card">
<img src="https://picsum.photos/300/200?2" alt="Formal">
<h3>Classic Formal</h3>
<p>Rs 4,999</p>
<button class="btn">Buy</button>
</div>
<div class="card">
<img src="https://picsum.photos/300/200?3" alt="Casual">
<h3>Casual Loafers</h3>
<p>Rs 2,799</p>
<button class="btn">Buy</button>
</div>
</section>
<footer id="contact">
<p>© 2026 Zafar Shoes Store | WhatsApp: 03xx-xxxxxxx | Faisalabad</p>
</footer>
</body>
</html>9
3
105KB
105KB
128.0ms
192.0ms
396.0ms