-
Notifications
You must be signed in to change notification settings - Fork 4
/
forms.html
29 lines (28 loc) · 982 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Forms</title>
</head>
<body>
<form method="get" action="">
<input type="text" name="firstname"><br>
<input type="text" name="Lastname"><br>
<input type="password" name="password"><br>
<textarea name="There" cols="30" rows="10"></textarea><br>
<input type="checkbox">
<label for="firstname">Fistname</label>
<input type="text" name="firstname"><br>
<label>Radio Buttons</label><br>
<input type="radio" value="1">1<br>
<input type="radio" value="2">2<br>
<input type="radio" value="3">3<br>
<label>Date</label><br>
<input type="date"><br>
<input type="email"><br>
<input type="number" step="0.5" min="0" max="5"><br>
<input type="url"value="https://"><br>
<input type="file"><br>
<input type="submit" value="submit"><br>
</form>
</body>
</html>