-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathassaigment.html
More file actions
81 lines (81 loc) · 2.96 KB
/
assaigment.html
File metadata and controls
81 lines (81 loc) · 2.96 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form</title>
</head>
<body>
<h1>Please answer the form completely</h1>
<label>This is a form to get to know you better</label>
<form>
<fieldset>
<p>
<label>
<strong>
Enter your name here:
</strong>
</label>
<input
type="name"
value=""
maxlength="20"
size="35cm"/>
</p>
<p>
<label>
<strong>
Please discribe yourself:
</strong>
</label>
<br>
<textarea
id="textarea"
rows="4"
cols="30">
</textarea>
<link rel="stylesheet" href="style.css">
</p>
<p>
<label>
<i>
Do you work out?
</i>
</label>
<br>
<input type="radio" name="button" class="button">Yes
<input type="radio" name="button" class="button">No
</p>
<p>
<label>
<strong>
<i>
What type of media do you prefer?
</i>
</strong>
</label>
<br>
<input type="checkbox" name="check" class="check">Books
<input type="checkbox" name="check" class="check">Magazines
<input type="checkbox" name="check" class="check">Online
</p>
<br>
<label for="movies">What genre is your favorite?</label>
<br>
<select size="5">
<option style="background-color:#ff0000"value="Action">Action</option>
<option style="background-color:#ffacac"value="romance">Romance</option>
<option style="background-color:#63ad6f"value="comedy">Comedy</option>
<option style="background-color:#d4b54d"value="drama">Drama</option>
<option style="background-color:#979797"value="horror">Horror</option>
</select>
<br>
<br>
<label>Press the submit button to submit your form</label>
<br>
<br>
<form>
<button>Submit</button><link rel="stylesheet" type="submitButton" href="style.css">
</form>
</fieldset>
</form>
</body>
</html>