-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
89 lines (65 loc) · 2.47 KB
/
index2.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>cac bai doc khac</title>
</head>
<body>
<form action="/action_page.php">
Account:
<input type="text" name="acc">
</form>
<form action="/action_page.php">
Password:
<input type="password" name="pwd">
</form>
<form action="/action_page.html">
So thich:<br>
<input type="hidden" name="hash" value="xxx">
<label><input name="hobby" value="travel" type="radio"/>Du lich</label>
<br>
<label><input name="hobby" value="sport" type="radio"/> THe thao</label>
<br>
<label><input name="hobby" value="cooking" type="radio"/> Nau an</label>
</form>
<form action="/action_page.php">
Account: <input name="account" value="admin" type="text"/><br/>
Sở thích:<br/>
<label><input name="hobby" value="travel" type="radio" checked/> Du lịch</label> <br/>
<label><input name="hobby" value="sport" type="radio"/> Thể thao</label> <br/>
<label><input name="hobby" value="cooking" type="radio"/> Nấu ăn</label> <br/>
<input type="reset" value="Reset"/>
</form>
<form method="POST">
Account: <input name="account" value="admin" type="text"/><br/>
Sở thích:<br/>
<label><input name="hobby" value="travel" type="radio" checked/> Du lịch</label> <br/>
<label><input name="hobby" value="sport" type="radio"/> Thể thao</label> <br/>
<label><input name="hobby" value="cooking" type="radio"/> Nấu ăn</label> <br/>
<input type="submit" value="Send data"/>
</form>
<form method="POST">
Account: <input name="account" value="admin" type="text"/><br/>
Sở thích:<br/>
<label><input name="hobby" value="travel" type="radio" checked/> Du lịch</label> <br/>
<label><input name="hobby" value="sport" type="radio"/> Thể thao</label> <br/>
<label><input name="hobby" value="cooking" type="radio"/> Nấu ăn</label> <br/>
<input type="submit" value="Send data"/>
</form>
<form method="POST">
<button type="button">
<img src="http://codegym.vn/wp-content/uploads/2017/03/CodeGym-3-02-copy.jpg" width="200px"/>
</button>
</form>
<form method="POST">
<textarea cols="50"
rows="4">This is a very very long text text text text text text text text text text text text </textarea>
</form>
<select name="city">
<option value="HN">Ha Noi</option>
<option value="BN">Bac Ninh</option>
<option value="HCM">Sai Gon</option>
<option value="TH"> THanh Hoa</option>
</select>
</body>
</html>