<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
label{display: block;width: 15%;float: left;}
form>section{margin-top: 10px}
</style>
</head>
<body>
<!-- Form: Dùng để thu thập thông tin của người dùng. -->
<form id="frm" action="" method="get">
<section><label>Họ và tên: </label><input type="text" name="hoten" maxlength="10" minlength=""></section>
<section><label>Password: </label><input type="password" name="matkhau"></section>
<label>Email: </label><input type="email" name="email"><br>
<label>Gender: </label><input type="radio" name="gender" value="1"> Male <input type="radio" name="gender" value="0">
Female <input type="radio" name="gender" value="2"> Other<br>
<label>Language: </label><input type="checkbox" name="language" value="en"> English <input type="checkbox"
name="language" value="jp">
Japanese <input type="checkbox" name="language" value="ge"> Germani<br>
<label>Number: </label><input type="number" name="number" min="0" max="10" step="0.1"
placeholder="Type number here..."><br>
<label>Address: </label><textarea rows="3" cols="50"></textarea>
<input type="hidden" name="author" value="Author"><br>
<label> </label><input type="submit" value="Gửi"> <input type="reset">
</form>
<br><input type="file" name="file" form="frm">
</body>
</html>