TRUNG TÂM GDNN-GDTX KHU VỰC ĐÔNG HÀ
Chơi mà học
Chơi mà học
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<title>Biểu mẫu</title>
</head>
<body>
<fieldset><legend>Thông tin cá nhân:</legend>
<h3> ĐĂNG NHẬP </H3>
<label for="hoten">Họ tên:</label>
<input type="text" id="hoten" name="hoten">
<br><br>
<label for="matkhau">Mật khẩu:</label>
<input type="password" id="matkhau" name="matkhau">
<br><br>
<label for="ngaysinh">Ngày sinh:</label>
<input type="date" id="ngaysinh" name="ngaysinh">
<br><br>
<label for="diachi">Địa chỉ:</label>
<textarea id="diachi" name="diachi" rows="5" cols="20">
</textarea>
<!------------------------------------------------------------------------------>
<h3> NÚT BẤM </h3>
<input type="submit" name="dangnhap" value="Đăng nhập">
<br><hr><br>
<!------------------------------------------------------------------------------>
<h3> Ô CHỌN 1 GIÁ TRỊ DUY NHẤT </H3>
<input type="radio" id="gioitinh1" name="gioitinh" value="nam">
<label for="nam">Nam</label>
<br><br>
<input type="radio" id="gioitinh2" name="gioitinh" value="nu" >
<label for="nu">Nữ</label>
<br><hr><br>
<!------------------------------------------------------------------------------>
<h3> Ô CHỌN NHIỀU GIÁ TRỊ </h3>
<input type="checkbox" id="sothich1" name="sothich1" value="covua">
<label for="covua">Cờ vua</label>
<br><br>
<input type="checkbox" id="sothich2" name="sothich2" value="game">
<label for="game">Trò chơi điện tử</label>
<br><br>
<input type="checkbox" id="sothich3" name="sothich3" value="dulich">
<label for="dulich">Du lịch</label>
<br><br>
<input type="checkbox" id="sothich4" name="sothich4" value="camhoa">
<label for="camhoa">cắm hoa</label>
<br><br>
<input type="checkbox" id="sothich5" name="sothich5" value="nauan">
<label for="nauan">Nấu ăn</label>
<br><hr><br>
<!------------------------------------------------------------------------------>
<h3> NÚT CHỌN TỆP TIN ĐỂ TẢI LÊN </h3>
<label for="hoso">Hồ sơ đình kèm </label>
<input type="file" id="hoso" name="hoso">
<br><hr><br>
<!------------------------------------------------------------------------------>
<h3> DANH SÁCH LỰA CHỌN </h3>
<label for="luachon">Đăng ký CLB </label>
<select id="thethao" name="thethao">
<option value="bongda">Bóng đá</option>
<option value="bongban">Bóng bàn</option>
<option value="bongro">Bóng rổ</option>
<option value="bongchuyen">Bóng chuyền</option>
<option value="caulong">Cầu lông</option>
<option value="boiloi">Bơi lội</option>
<option value=“vothuat">Võ thuật</option>
</select>
</fieldset>
</body>