-
Notifications
You must be signed in to change notification settings - Fork 0
/
bob.html
53 lines (50 loc) · 1.85 KB
/
bob.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
49
50
51
52
53
<html>
<head>
<title>Soccer Recruitment</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="soccer.css">
</head>
<body>
<h1 >Soccer Recruitment</h1>
<form>
<label for = "fname">
full name
</label>
<input type = "text " id = "fname" name = "fname"> <br>
<label for = "Gender">
Gender
</label><br>
<input type = "radio" id = "Male" name = "Gender" value ="Male">
<label for = "Male">Male</label>
<input type = "radio" id = "Female" name = "Gender" value ="Female">
<label for = "Female">Female</label> <br>
<label>skills</label> <br>
<label for = "shooting">
shooting
</label>
<input type = "number" id = "shooting" name = "shooting" min = "1" max="100" step = "5"> <br>
<label for = "dribbling">
dribbling
</label>
<input type = "number" id = "dribbling" name = "dribbling" min = "1" max="100" step = "5"> <br>
<label for = "speed">
speed
</label>
<input type = "number" id = "speed" name = "speed" min = "1" max="100" step = "5"> <br>
<label for = "passing">
passing
</label>
<input type = "number" id = "passing" name = "passing" min = "1" max="100" step = "5"> <br>
<label for = "defending">
defending
</label>
<input type = "number" id = "defending" name = "defending" min = "1" max="100" step = "5"> <br>
<label for = "reason">
Why'd you join?
</label><br>
<textarea rows = "5" cols = "30" id = "reason" name = "reason"> </textarea><br>
<input type = "submit">
</form>
</body>
</html>