-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
36 lines (31 loc) · 789 Bytes
/
form.html
File metadata and controls
36 lines (31 loc) · 789 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>form demo</title>
</head>
<body>
<!-- <h1>login</h1>
<form method="get">
<label for="jik">username: </label>
<input id="jik" type="email" placeholder="username" name="hygg" required>
<label for="huj"> password:</label>
<input id="huj" type="password" placeholder="akak" name="kokk" required >
<input type="submit" >
</form> -->
<form>
<label for="dog">dog</label>
<input id="dog" type="radio" name="jk" value="dog">
<label for="cat">cat</label>
<input type="radio" name="jk" id="cat" value="cat">
<p>colour</p>
<select name="ooo">
<option>red</option>
<option>re</option>
<option value="juh">reddd</option>
<option>ress</option>
</select>
<textarea name="kick" rows="10" cols="10"></textarea>
<input type="submit" >
</form>
</body>
</html>