-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic.html
More file actions
71 lines (59 loc) · 1.42 KB
/
Basic.html
File metadata and controls
71 lines (59 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
color: green;
text-align: center;
}
body {
text-align: center;
}
</style>
</head>
<body>
<h1> Basic form input types</h1>
<form>
<label for="Name">Enter your Name : </label>
<input type="text" />
</form>
<br />
<form>
<label for="date">Enter Date-Time : </label>
<input type="datetime" />
</form>
<br />
<form>
<label for="date">Select Date-Time Local : </label>
<input type="datetime-local" />
</form>
<br />
<form>
<label for="time">Select Week : </label>
<input type="week" />
<form>
<label for="mail">Enter Email : </label>
<input type="email" />
</form>
<br />
<form>
<label for="date">Select Month : </label>
<input type="month" />
</form>
<br />
<form>
<label for="number">Select Number : </label>
<input type="number" />
</form>
<br />
<form>
<label for="number">Select Number in Range : </label>
<input type="range" min="1" max="10" step="1" />
</form>
<video width = "300" height = "200" controls autoplay>
<source src = "sample.ogg" type ="video/ogg" />
<source src = "sample.mp4" type = "video/mp4" />
Your browser does not support the <video> element.
</video>
</body>
</html>