-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
51 lines (48 loc) · 1.69 KB
/
form.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Music</title>
<link rel="stylesheet" href="css/form.css"/>
</head>
<body>
<div class="content">
<form method="get" action="#">
<label>Full name</label>
<input type="text" required name="fullname" placeholder="Enter name.."/>
<label>Email</label>
<input type="email" required name="youremail" placeholder="Enter email.."/>
<label> Password</label>
<input type="password" required name="pwd" placeholder="Enter password.."/>
<label>Age</label>
<input type="number" name="age" placeholder="Enter age.."/>
<label>Birthday</label>
<input type="date" name="brth" placeholder="Enter birthday.."/>
<br>
<label>Gender</label>
<label><input type="radio" value="male" name="gender"/>Nam</label>
<label><input type="radio" value="female" name="gender"/>Nữ</label>
<label><input type="radio" value="other" name="gender"/>Khác</label>
<br>
<label>My CV</label>
<input type="file" name="cv" placeholder="Nộp CV.."/>
<br>
<label><input type="checkbox" name="confirm"/>
Tôi đã đọc và đồng ý các điều khoản trong hợp đồng</label>
<br>
<label>City</label>
<select name="yourcity">
<option value="hanoi">Hà Nội</option>
<option value="saigon">TP HCM</option>
<option value="cantho">Cần Thơ</option>
</select>
<br>
<label>Tiểu sử bản thân</label>
<textarea name="motabanthan" rows="10" cols="100"> </textarea>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
<button type="button" >Button</button>
</form>
</div>
</body>
</html>