-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<title> Google form</title>
</head>
<style>
h2{
color: rgb(14, 13, 13);
padding-top: 15px;
font-family: sans-serif;
text-align: center;
}
form[input-text]{
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
text-align: center;
}
</style>
<body>
<h2>STUDENTS DETAILS</h2>
<main>
<form >
<form action=""/action_page.php"><br>
<label for="fname"> First name</label><br>
<input type="First Name " required> <br><br>
<label for="lname"> Last name</label><br>
<input type="Last Name" required> <br> <br>
<label for="Age"> Age</label><br>
<input type="Age" required> <br> <br>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Others</label><br><br>
<label for=Email> Email</label><br>
<input type="Email" required> <br> <br>
<label for="School">School</label><br>
<input type=" School" required><br><br>
<label for="Level"> Level </label><br>
<input type=" Level" required > <br><br>
<button type="submit"><strong>Submit</strong></button>
</form>
</form>
</main>
<p>Thank you, your details will be submited to the school authority.</p>
</body>
</html>