Application Form
Application Form
<html>
<head>
<title>Application Form</title>
<style>
div{
text-align:Center;
padding: 20px;
height:410px;
width :300px;
background-color:grey;
border-radius: 10px;
width :100%
margin-left:500px;
.submit-btn{
background-color:blue;
width :250px;
height :35px;
margin-down:10px;
border-color:blue;
color:white;
}
.reset-btn{
background-color:#33b249;
width :200px
height :30px;
border-color:#33b249;
color:white;
</style>
</head>
<body>
<form action="welcome.html">
<div>
<lable>Full Name</label><br>
<label>Email Address</label><br>
<label>Mobile Number</label><br>
<label>Password</label><br>
<label>Address</label><br>
<textarea></textarea></br>
<lable>Birth Date</label>
<input type="date"><br>
<label>Country</label>
<select>
<option value="India">India</option>
<option value="USA">USA</option>
<option value="UK">US</option>
<option value="AUS">AUS</option>
</select><br>
<label>Gender</label>
<label>Hobbies</label>
<button class="submit-btn">SUBMIT</button><br>
<button class="reset-btn" style="height:35px;width:250px;margin-
top:10px">RESET</button>
</div>
</form>
</body>
</html>