-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_and_forms.html
45 lines (29 loc) · 944 Bytes
/
input_and_forms.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
<!DOCTYPE html>
<html>
<!-- ******************************* -->
<!-- ------ HEAD of my website ----- -->
<!-- ******************************* -->
<head>
<meta charset="UTF-8">
<meta name="description" content="This is an awsome website">
<title>Inputs and Forms in HTML</title>
</head>
<!-- ******************************* -->
<!-- ------ BODY of my website ----- -->
<!-- ******************************* -->
<body>
<input type="text" value="Enter your Login"/>
<input type="password" />
<textarea rows="10" cols="30">
Enter a paragraph
</textarea>
<input type="date">
<input type="checkbox" />
<input type="checkbox" />
<input name="btn" type="radio" />
<input name="btn" type="radio" />
<form>
<input type="submit" />
</form>
</body>
</html>