-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
32 lines (31 loc) · 952 Bytes
/
index1.html
File metadata and controls
32 lines (31 loc) · 952 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
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body bgcolor="lightblue">
<h4>There are eleven different types of form elements</h4>
<div align="left" >
<form>Button:
<input type="button" value="button" ><br>
Checkbox:
<input tup="checkbox" size="1" ><br>
File Upload:
<input type="file" name="file"><br>
Hidden:
<input tyoe="Hidden" name="Hidden"><br>
Password:
<input type="password" name="password"><br>
Radio:
<input type="radio" name="radio"><br>
Reset Object:
<input type="reset" name="reset"><br>
Select Object:
<select name="list" size="2"><br><br>
Phone Number:<input type="text" size="2">
<input type="text" size="10">
</form></div>
</body>
</html>