CSS PR6 Writeup
CSS PR6 Writeup
<head>
<h1>Practical 6 : Create web page using form elements.</h1>
<h2>User Registration From!!</h2s>
<style>
.bordered
{
width : 500px;
height: 500px;
border: 1px solid grey;
margin-left: 100px;
}
form{
margin: 6px;
}
</style>
</head>
<body>
<div class="bordered">
<form name="new" method="get" action="#">
<br>
First Name:<input type="text" id="fname"></br></br>
<label for="lname">Last name:</label>
<input type="text" id="lname"></br></br>
<lable for="uid"> Email:
<input type="email" id="uid"></br></br>
<lable for="pwd"> Password:
<input type="password" name="pwd"> </br></br>
<lable for="dob"> Birthdate:
<input type="date" name="dob"></br></br>
Country:<select name="select">
<option value="India"> India</option>
<option value="Japan"> Japan</option>
</select> </br></br>