Untitled
unknown
plain_text
a year ago
1.5 kB
1
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <title>TopServe Limited - Cake Decorating Accessories</title> </head> <body> <header> <nav> <ul> <li><a href="#">Home</a></li> <li><a href="#">Shop</a></li> <li><a href="#">About Us</a></li> <li><a href="#">Contact Us</a></li> </ul> </nav> <div class="cart"> <a href="#"><img src="cart-icon.png" alt="Cart"></a> <span class="cart-count">0</span> </div> </header> <section class="banner"> <!-- Carousel or banners with featured products --> </section> <section class="categories"> <!-- Display featured categories --> </section> <section class="products"> <!-- Display products with images, names, prices --> </section> <footer> <div class="contact"> <p>Contact us: info@topserveltd.com</p> </div> <div class="social"> <a href="#"><img src="facebook-icon.png" alt="Facebook"></a> <a href="#"><img src="twitter-icon.png" alt="Twitter"></a> <a href="#"><img src="instagram-icon.png" alt="Instagram"></a> </div> </footer> </body> </html>