Develop static pages(sin only HTML) of an online book store. The pages should resemble www.amazon.com. The website should consist the following pages.

F. SHOPPING CART

<html>

<head>

<title>shopping cart</title>

</title>

<body bgcolor="cyan">

<center><h1>

shopping cart</h1></center>

<br><br><br><br><br>

<table align="center">

<tr>

<td>Text Books</td>

<td>

<select>

<optgroup label="select the book">

<option value="C&Ds">C&Ds

<option value="Ads">Ads

<option value="java">java

<option value="oracle">oracle

<option value="Ms SQL server">Ms SQL server

<option value="Mysql">Mysql

</optgroup>

</select>

</td>

</tr>

<tr>

<td>

Quality</td>

<td>

input type="text" id="q">

</td>

</tr>

<tr>

<td>

</td>

<td>

<form method=post action="payment.html">

<input type="submit" value=ok/>

</form>

</td>

</tr>

</table>

<pre>cost of one book is "500"+shipping "00";

</pre>

</center>

</body>

</html>

OUTPUT: