Page 320 - Web Applications (803) Class 12
P. 320
File1: Index.html
<html>
<head>
<title>Shoe Store</title>
<link rel=”stylesheet” href=”styles.css”>
</head>
<body>
<header>
<h1>Shoe Store</h1>
</header>
<main>
<section class=”product”>
<img src=”Image1.jpg” alt=”Shoe 1”>
<h2>Running Shoe</h2>
<p>Price: Rs.5049.00</p>
<button class=”add-to-cart”>Add to Cart</button>
</section>
<section class=”product”>
<img src=”Image2.jfif” alt=”Shoe 2”>
<h2>Casual Shoe</h2>
<p>Price: Rs.4590.00</p>
<button class=”add-to-cart”>Add to Cart</button>
</section>
<!-- Add more product sections as needed -->
</main>
<script src=”Pscript.js”></script>
</body>
</html>
318 Touchpad Web Applications-XII

