Lab Activity For HTML
Lab Activity For HTML
<html>
<head>
</head>
<body bgcolor="pink">
<h1 align="center">
</h1>
<h3 align="center">
Form</i></font></a><br><br>
Profile</i></font></a><br><br>
Login</i></font></a><br><br>
Catalog</i></font></a><br><br>
</h3>
</body>
</html>
<html>
<head>
<meta charset="UTF-8">
<title>Registration Form</title>
</head>
<body>
<!--The fieldset tag is used to group related form elements together and draw a box
<legend>Registration Form</legend>
<form action="3.user-profile.html">
<pre class="reg">
<input
</form></fieldset> </center>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>User Profile</title>
</head>
<body>
<fieldset>
<legend>User Profile</legend>
<form action="4.user-login.html">
<div class="user-details">
<p><strong>Age:</strong> 25</p>
<p><strong>Address:</strong> Wah</p>
<p><strong>Phone:</strong> 03457789889</p>
<p><strong>Occupation:</strong> Teacher</p>
</div>
</form>
</fieldset>
</body>
</html>
<html>
<head>
<title>User Login</title>
</head>
<body bgcolor="00f000">
<center>
<h1><u>User login.....</u></h1>
<p>
</p>
</form>
</center>
</body>
</html>
<html>
<head>
<title>Book Catalog</title>
</head>
<body>
Catalog</font></h1></center>
<tr>
<ul>
</ul>
</td>
<td>
<b>Add to Cart</b><br>
</td>
</tr>
<tr>
<td><b>Visual Basics</b>
<ul>
</ul>
</td>
<td>
<b>Add to Cart</b><br>
</td>
</tr>
<tr>
Cover"></td>
<ul>
<li><font color="blue">Author: Kiran-Gangadhar</font></li>
</ul>
</td>
<td>
<b>Add to Cart</b><br>
</td>
</tr>
<tr>
Cover"></td>
<ul>
</ul>
</td>
<td>
<b>Add to Cart</b><br>
</td>
</tr>
</table>
</body>
</html>
<head>
<title>Shopping cart</title>
</head>
<body>
<h1>Shopping Cart</h1>
<h2><ul>
<li>Book 1-$10-Quantity:1</li>
<li>Book 2-$15-Quantity:1</li>
</ul></h2>
<h2>Total:$25</h2>
</body>
</html>
RESULT OF THAT CODE
<head>
<title>Payment of book</title>
</head>
<body>
<center><form action="8.confirmation.html">
</form></center>
</body>
</html>
RESULT OF THAT CODE
<head>
<title>confirmation of order</title>
</head>
<body>
<h1>Order confirmation</h1>
<h2>Thank you for your purchase! We will give our best to you. Your order has been confirmed..</h2>
<h2>Order summary:</h2>
<h2><ul><li>Book 1-$10</li>
<li>Book 2-$15</li>
</ul></h2>
<h2>Total:$25</h2>
</body>
</html>
RESULT OF THAT CODE