-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathform.html
More file actions
35 lines (34 loc) · 1.15 KB
/
form.html
File metadata and controls
35 lines (34 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>:: Form Fields ::</title>
</head>
<body>
<form action="" method="get">
<label for="uname">Enter Username :</label>
<input type="text" name="uname" id="uname" placeholder="Enter Username" required>
<br>
<label for="pword">Enter Password :</label>
<input type="text" name="pword" id="pword">
<br>
<input type="email" name="" id="" required>
<input type="file" name="" id="">
<input type="number" name="" id="">
<input type="color" name="" id="">
<input type="date" name="" id="">
<br>
<input type="datetime" name="" id="">
<input type="datetime-local" name="" id="">
<br>
<input type="hidden" name="" id="">
<input type="range" name="" id="" value="3" min="1" max="10">
<input type="reset" value="reset">
<input type="submit" value="register">
<br>
<audio src=""></audio>
</form>
</body>
</html>