-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLECTURE 4 INPUTS.HTML
43 lines (43 loc) · 1.19 KB
/
LECTURE 4 INPUTS.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
<!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>
<style>
div{
width: 500px;
height: 800px;
background-color: aqua;
color: blueviolet;
}
</style>
<body>
<div>
<h1>INPUT</h1>
<input type="button"> <br>
<input type="checkbox"> <br>
<input type="color"><br>
<input type="date"><br>
<input type="datetime-local"><br>
<input type="email"><br>
<input type="file"><br>
<input type="hidden"><br>
<input type="month"><br>
<input type="number"><br>
<input type="password"><br>
<input type="radio"><br>
<input type="range"><br>
<input type="reset"><br>
<input type="search"><br>
<input type="submit"><br>
<input type="tel"><br>
<input type="text"> (default value)<br>
<input type="time"><br>
<input type="url"><br>
<input type="week"><br>
<p>See more <a href="./LECTURE 3 3 LINKS.HTML.htm" target="_blank"> David photos</a> in our gallery.</p>
</div>
</body>
</html>