
<html>
<head>
<title></title>
</head>
<body>
<h1 style=”background-color: cyan; color: red; border: 1px solid red;”>User Information</h1>
<form action=”#” methid=”post”>
<fieldset style=”background-color: #ffffed”>
<legend>Contact us</legend>
First name: <input type=”text” value=”firstname” placeholder=”Enter First name”><br>
Last name: <input type=”text” value=”last name” placeholder=”Enter Last name”><br>
Email: <input type=”email” placeholder=”Type your email address” style=”margin-left: 35px”><br>
Username: <input type=”username” placeholder=”Enter username” required><br>
Password: <input type=”password” placeholder=”Enter password” minlength=”6″ maxlength=”8″ required> <br>
Gender:<br>
<input type=”radio” name=”gender”> Male <br>
<input type=”radio” name=”gender”> Female <br>
<input type=”radio” name=”gender”> Other <br>
Language Known: <br>
Bangla <input type=”checkbox” style=”margin-left: 6px”> <br>
English <input type=”checkbox” style=”margin-left: 3px”> <br>
Hindi <input type=”checkbox” style=”margin-left: 17px”> <br>
Arabic <input type=”checkbox” style=”margin-left:8px”> <br>
Date of birth:<br> <input type=”date” value=”DOB”> <br><br>
<textarea style=”background-color: #ffdeff” cols=”30″ rows=”7″ placeholder=”Type your message here.”></textarea> <br>
<input type=”submit” value=”Cancel”>
<input type=”reset” value=”Reset” style=”margin-left: 30px”>
<input type=”submit” value=”Send” style=”margin-left:30px”>
</fieldset >
</form>
</body>
</html>