-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputElement.html
More file actions
66 lines (55 loc) · 1.71 KB
/
InputElement.html
File metadata and controls
66 lines (55 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title>Input Elements</title>
</head>
<body>
<fieldset>
<legend>Login:</legend>
<form>
<!--<h1>Text box</h1>-->
UserName :<br>
<input type="text" name="UserName" placeholder="Enter the name" size="15" maxlength="25" required><br>
Password :<br>
<input type="password" name="Password" placeholder="*****" style="color:#ff0000" required><br>
Email:<br>
<input type="email" name="Email" placeholder="Your email here" style="color:blue" required><br>
ContactNo.:<br>
<input type="tel" name="phone" placeholder="Contact No." style="color: rgb(100 250 150);" required><br>
<label for="birthday">DOB</label><br>
<input type="date" id="birthday" name="birthday" required><br>
<!--<h1>Radio Button</h1>-->
<h3>Gender</h3>
<input type="radio" name="Gender">Male<br>
<input type="radio" name="Gender">Female<br>
<!--<h1>Check Box</h1>-->
<h3>Hobbies</h3>
<input type="checkbox" name="Hobbies">Painting<br>
<input type="checkbox" name="Hobbies">Dancing<br>
<input type="checkbox" name="Hobbies" checked>Sleeping<br>
<input type="checkbox" name="Hobbies">singing<br>
<!--<h1>Text Area</h1>-->
<h3>Address</h3>
<textarea rows="4" cols="8"></textarea><br>
<input type="color">
<!--<h1>Select</h1>-->
<h3>Interested Course</h3>
<select >
<option>C</option>
<option>C++</option>
<option>Java</option>
<option>Python</option>
<option>PHP</option>
</select><br>
<input type="range" min="1" max="10" ><br>
<h3>Upload File</h3>
<input type="file" name="file"><br><br>
<input type="number" min="1" max="3"><br><br>
<!--<h1>Button</h1>-->
<input type="Submit" name="button" value="Submit">
<input type="Reset" name="button" value="Reset">
<input type="button" name="button" value="Click">
</form>
</fieldset>
</body>
</html>