-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
60 lines (58 loc) · 1.29 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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sample page</title>
</head>
<body>
<link rel="stylesheet" href="style2.css">
<H1 align ="left">FORMS</H1>
<form align="center">
<div>
<label for="name">name:</label>
<input type ="text" name="myname" id="name" required>
</div>
<br>
<div>
<input type="reset" name="reset">
</div>
<br>
<div>
<label for="date">d.o.b.:</label>
<input type ="date" name="d.o.b" id="date" required>
</div>
<br>
<div>
<label for="mypassword">password:</label>
<input type =password name="password" id="mypassword"required >
</div>
<br>
<div>
TELL ABOUT YOURSELF:<br>
<textarea name="Tell about yourself" cols="30" rows="10" id="text"></textarea>
</div>
<br>
<div>
ARE YOU A PROGRAMMER:
<input type="checkbox" required>
</div>
<br>
<div>
TELL ABOUT YOUR PROGRAMMING SKILLS:
<select name="programmer" >
<option value="GOOD SKILLS">GOOD SKILLS</option>
<option value="BAD SKILLS">BAD SKILLS</option>
</select>
</div>
<br>
<div>
<input type="submit" value="submit" id="submit">
</div>
<br>
<div>
<input type="reset" value="reset" id="reset">
</div>
</form>
</body>
</html>