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.
c. registration page
<html>
<head>
<title>
login page</title>
</head>
<body bgcolor="cyan">
<center><strong><h1>AMAZON</h1></strong></center>
<form method="post" action="catalog.html
<right>
<table align="left">
<tr>
<td><h4>user name</td>
<td><input type="text"></td>
</tr>
<tr>
<td><h4>password</td>
<td><input type="password"></td>
</tr>
<tr>
<td><h4>confirm password</td>
</tr>
<tr>
<td><h4>make nbsp;
<option>
<input type="radio" name="sex" id="male></td>
<td><h4>female
<input type="radio" name="sex" id="female"></td>
</option>
</tr>
<tr>
<td>Address</td>
<td><text area name="address" rows=5 cols=9>
</text area>
</td>
<tr>
<td>
<input type="submit" value="submit"></td>
<td>
<input type="reset" value="reset"></td>
</tr>
</form>
</body>
</html>
0 Comments