-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.html
More file actions
27 lines (27 loc) · 916 Bytes
/
form.html
File metadata and controls
27 lines (27 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html>
<head>
<title></title>
<meta charset="utf-8">
<style>HTML Form</style>
</head>
<body>
<form>
Nhập tên: <input type="text" size="35" value="Tôi là Long" placeholder="Tên bạn là gì" id="txt_ten" name="txt_ten" disabled>
<br>
Mật khẩu: <input type="password" size="35" value="">
<br>
Mô tả: <textarea cols=20 rows=5 placeholder="Nhập thông tin mô tả"></textarea>
<br>
Danh sách tỉnh:
<select id="matinh" name="matinh">
<option value="t01">Tp. Hồ Chí Minh</option>
<option value="t02">Huế</option>
<option value="t03">Hà Nội</option>
</select>
<br>
<input type="button" value="Nút bình thường">
<input type="submit" value="Gửi thông tin">
<input type="reset" value="Làm lại">
</form>
</body>
</html>