-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapply.html
More file actions
45 lines (42 loc) · 1.21 KB
/
Copy pathapply.html
File metadata and controls
45 lines (42 loc) · 1.21 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
<html>
<head>
<title>Apply</title>
</head>
<body>
<form>
<fieldset>
<legend><b>Application Form</b></legend>
Name:
<input type="text" name = "name">
<br/><br/>
Age:
<input type= "text" name = "age">
<br/><br/>
Do you like Justin Biber?</br>
<input type="radio" checked="checked" name="1" value="Like" />
Love him
<input type="radio" checked="checked" name="1" value="Dislike" />
Hate him
<input type="radio" checked="checked" name="1" value="Unknown" />
Who the heck is he?</br></br></br>
If you had a chance,what color of the tongue would you like to have?</br>
<select name="colours">
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="pink">Dreamy Pink</option>
<option value="no">Transparent</option>
</select></br></br></br>
What's your hobby:</br></br>
<input type="checkbox" name="game">Play games
<input type="checkbox" name="game">Play games
<input type="checkbox" name="game">Play games
<input type="checkbox" name="game">Play games
<input type="checkbox" name="fight">Fight with Mike
</br></br></br>
<input type="button" value="Click me!" onclick="alert('Comfirm submit?');window.history.back()">
</fieldset>
</form>
</br></br>
</body>
</html>