0% found this document useful (0 votes)
13 views

Pwtassignment 2

The document contains code for a home page that frames three other pages - a login page, catalog page, and registration page. The login page contains fields to enter a username and password. The catalog page displays a table with books, their details and images. The registration page contains fields to enter personal details like name, password, gender and address.

Uploaded by

jagruti sohale
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Pwtassignment 2

The document contains code for a home page that frames three other pages - a login page, catalog page, and registration page. The login page contains fields to enter a username and password. The catalog page displays a table with books, their details and images. The registration page contains fields to enter personal details like name, password, gender and address.

Uploaded by

jagruti sohale
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Name:prachi Dileep Thakare

Div:A

ROLL NO:62

HOME PAGE-

<html>

<head>

<bgcolor="DodgerBlue">

<frameset cols="30%, 40%, 35%">

<frame src ="login.html"/>

<frame src ="catalog.html"/>

<frame src ="regi.html"/>

</frameset>

</head>

</html>

LOGIN PAGE-

<!DOCTYPE html>

<html>

<head>

<title>Login Page</title>

<h2 align="center">USER LOGIN</h2>

</head>

<body bgcolor="CornflowerBlue">

<label><b>Enter your name:</label></b><br>

<input type="text" name="username"><br><br>

<label><b>Enter password:</label></b><br>

<input type="text" name="password"><br><br>

<input type="submit" name="submit"><br>


</body>

</html>

CATALOG PAGE-

<!DOCTYPE html>

<html>

<head>

<title>CATALOG</title>

</head>

<body bgcolor="Cornflowerblue">

<h2 align="center">BOOK CATALOG</h2>

<table border="3" align="center">

<tr bgcolor="white">

<th><b>SR NO.</b></th>

<th><b>Book Name</b></th>

<th><b>Author</b></th>

<th><b>Price</b></th>

<th><b>Image</b></th>

</tr>

<tr>

<td>1</td>

<td>Data Structures using C</td>

<td>Mrs. Manisha Bharambe</td>

<td>225</td>

<td><image src="data structures using c.jpg" height="100" width="100"></img></td>

</tr>

<tr>

<td>2</td>
<td>Data Analytics</td>

<td>Mrs Harsha Patil</td>

<td>230</td>

<td><image src="data analytics.jpg" height="100" width="100"></img></td>

</tr>

<tr>

<td>3</td>

<td>Software Testing</td>

<td>Niket Tajne</td>

<td>190</td>

<td><image src="sofware testing.jpg" height="100" width="100"></img></td>

</tr>

<tr>

<td>4</td>

<td>Operating Systems</td>

<td>Mrs Anjali Sardesai</td>

<td>200</td>

<td><image src="operating systems.jpg" height="100" width="100"></img></td>

</tr>

<tr>

<td>5</td>

<td>Blockchain Technology</td>

<td>Ms. Manisha Gadekar</td>

<td>130</td>

<td><image src="blockchain technology.jpg" height="100" width="100"></img></td>

</tr>

</table>
</body>

</html>

REGISTRATION PAGE-

<!DOCTYPE html>

<html>

<head>

<title>Registration</title>

</head>

<body bgcolor = "CornflowerBlue">

<h2>REGISTRATION FORM</h2>

<form>

<label><b>Enter the name:</label></b><br>

<input type="text" name="Username"><br><br>

<label><b>Enter the password:</label></b><br>

<input type="text" name="Password"><br><br>

<label><b>Confirm password</label></b><br>

<input type="text" name="password"><br><br>

<label><b>Select Gender</label></b><br>

<input type="radio" id="gender" name="gender" value="Male">Male<br>

<input type="radio" id="gender" name="gender" value="Female">Female<br>

<br><b

>Enter the address:</b><br>

<textarea></textarea><br>

<input type="Submit" value="Sign up"><br>

</form>

</body>

OUTPUT-

You might also like