Untitled
unknown
plain_text
3 years ago
1.5 kB
11
Indexable
<!DOCTYPE html>
<html>
<head>
<title>My Online Store</title>
</head>
<body>
<header>
<h1>My Online Store</h1>
<nav>
<ul>
<li><a href="#featured">Featured Products</a></li>
<li><a href="#new-arrivals">New Arrivals</a></li>
</ul>
</nav>
</header>
<main>
<section id="featured">
<h2>Featured Products</h2>
<ul>
<li>
<h3>Product 1</h3>
<img src="product1.jpg" alt="Product 1">
<p>Description of product 1</p>
<button>Add to Cart</button>
</li>
<li>
<h3>Product 2</h3>
<img src="product2.jpg" alt="Product 2">
<p>Description of product 2</p>
<button>Add to Cart</button>
</li>
</ul>
</section>
<section id="new-arrivals">
<h2>New Arrivals</h2>
<ul>
<li>
<h3>Product 3</h3>
<img src="product3.jpg" alt="Product 3">
<p>Description of product 3</p>
<button>Add to Cart</button>
</li>
<li>
<h3>Product 4</h3>
<img src="product4.jpg" alt="Product 4">
<p>Description of product 4</p>
<button>Add to Cart</button>
</li>
</ul>
</section>
</main>
<footer>
<p>Copyright © 2023 My Online Store</p>
</footer>
</body>
</html>
Editor is loading...