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.
b. register and user login
<html>
<head>
<title>
login</title>
</head>
<body bicolor="pink"><center>
<strong><h1>AMAZON</h1></strong></center>
<right>
<table align="right">
<tr>
<td>
<h4>user name</td>
<td><input type="text"></td>
<td></td>
</tr>
<tr><td><h4password</td>
<td><input typr="password"></td>
<td></td>
</tr>
<tr>
<td>
<form method="post" action="catalog.html">
<input type="submit" value="submit">
</form>
</td>
<form method="post" action="reg.html">
<input type="submit" value="register">
<input type="reset" value="reset"></form></td>
</tr>
</table>
</body>
</html>
OUTPUT:
0 Comments