-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
87 lines (74 loc) · 2.66 KB
/
Copy pathindex1.html
File metadata and controls
87 lines (74 loc) · 2.66 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form excercise</title>
</head>
<body>
<h1>Register</h1>
<form action="">
<div>
<label for="name">first name:</label>
<input type="text" name="first name" id="" placeholder="john">
<label for="name">last name:</label>
<input type="text" name="last name" id="" placeholder="smith"><br><br>
</div>
<div>
<label for="">male</label>
<input type="radio" name="male" id="">
<label for="">female</label>
<input type="radio" name="female" id="">
<label for="others">others</label>
<input type="radio" name="others" id=""><br><br>
<label for="email">Email:</label>
<input type="email" name="email" id="" placeholder="your email">
<label for="password">Password:</label>
<input type="password" name="password" id="password" reuqired title="5 to 10 characters"
placeholder="your password"><br><br>
</div>
<div>
<label for="">Birthday:</label>
<select name="month" id="month">
<option>month</option>
<option>jan</option>
<option>feb</option>
<option>march</option>
<option>april</option>
<option>may</option>
<option>june</option>
<option>july</option>
<option>august</option>
<option>sept</option>
<option>oct</option>
<option>nov</option>
<option>dec</option>
</select>
<select name="day" id="day">
<option>Day</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
<select name="year">
<option>Year</option>
<option>2000</option>
<option>2001</option>
<option>2002</option>
<option>2025</option>
</select><br><br>
</div>
<div>
<label for="term">i agree to the terms and condition</label>
<input type="checkbox" name="" id=""><br><br>
<button>submit</button>
</div>
</form>
</body>
</html>