Skip to content

Commit a8d525f

Browse files
authored
Add files via upload
1 parent 96ea5c5 commit a8d525f

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

index.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<html>
2+
<head>
3+
<title>Soccer Recruitment</title>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<link rel="stylesheet" href="soccer.css">
7+
</head>
8+
<body>
9+
<h1 >Soccer Recruitment</h1>
10+
<form>
11+
<label for = "fname">
12+
full name
13+
</label>
14+
<input type = "text " id = "fname" name = "fname"> <br>
15+
<label for = "Gender">
16+
Gender
17+
</label><br>
18+
<input type = "radio" id = "Male" name = "Gender" value ="Male">
19+
<label for = "Male">Male</label>
20+
<input type = "radio" id = "Female" name = "Gender" value ="Female">
21+
<label for = "Female">Female</label> <br>
22+
<label>skills</label> <br>
23+
<label for = "shooting">
24+
shooting
25+
</label>
26+
<input type = "number" id = "shooting" name = "shooting" min = "1" max="100" step = "5"> <br>
27+
<label for = "dribbling">
28+
dribbling
29+
</label>
30+
<input type = "number" id = "dribbling" name = "dribbling" min = "1" max="100" step = "5"> <br>
31+
<label for = "speed">
32+
speed
33+
</label>
34+
<input type = "number" id = "speed" name = "speed" min = "1" max="100" step = "5"> <br>
35+
<label for = "passing">
36+
passing
37+
</label>
38+
<input type = "number" id = "passing" name = "passing" min = "1" max="100" step = "5"> <br>
39+
40+
<label for = "defending">
41+
defending
42+
</label>
43+
<input type = "number" id = "defending" name = "defending" min = "1" max="100" step = "5"> <br>
44+
45+
<label for = "reason">
46+
Why'd you join?
47+
</label><br>
48+
<textarea rows = "5" cols = "30" id = "reason" name = "reason"> </textarea><br>
49+
<input type = "submit">
50+
</form>
51+
52+
</body>
53+
</html>

0 commit comments

Comments
 (0)