-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.39 KB
/
index.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
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<form>
<fieldset>
<legend>Login</legend>
<label for="">Username</label><br>
<input type="text">
<br>
<label for="">Password</label><br>
<input type="password">
</fieldset>
<fieldset>
<legend>Gender</legend>
<input type="radio">Male
<input type="radio">Female
</fieldset>
<fieldset>
<legend>Programming Skill</legend>
<input type="checkbox">Java
<input type="checkbox">C++
<input type="checkbox">C#
</fieldset>
<fieldset>
<legend>Fruit</legend>
<label for="">Choose a fruit:</label>
<select name="" id="">
<option value="">Banana</option>
<option value="">Apple</option>
<option value="">Strawberry</option>
<option value="">Mango</option>
<option value="">Orange</option>
<option value="">Blueberry</option>
<option value="">Grapes</option>
</select>
</fieldset>
<textarea placeholder="Enter your comment here" id="" cols="30" rows="5"></textarea>
<br>
<button type="submit">SEND</button>
<button type="reset">RESET</button>
</form>
</body>
</html>