-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (61 loc) · 1.53 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
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Assignment 5</title>
<style>
label {
width: 50px;
display: inline-block;
color: purple;
}
h3 {
background: aqua;
color: brown;
}
h1 {
background: black;
color: yellow;
}
</style>
</head>
<body>
<div>
<h1 style="text-align:left" , width="20%"><u>STUDENT SCHOLARSHIP</u></h1>
<form action="/action_page.js">
<h3 style="text-align:center"><u>Student details</u></h3>
<label for = "fname">First name:</label>
<input type ="text" id = "fname"><br><br>
<label for = "lname">Last name:</label>
<input type="text" id = "lname"><br><br>
<label for = "year">Class you are studying in</label>
<select>
<optgroup label="BE">
<option>1st year</option>
<option>2nd year</option>
<option>3rd year</option>
<option>4th year</option>
</optgroup>
</select>
<br><br>
<label for = "year">Branch</label>
<select>
<option>CSE</option>
<option>ISE</option>
<option>Mech</option>
<option>ECE</option>
</optgroup>
</select><br><br>
<label for = "gender">Gender:</label>
<input type ="checkbox">Male
<input type = "checkbox">Female
<br><br>
<label for = "telephone">phone no.:</label>
<input type = "number" id = "telephone"><br><br>
<label for = "student_email">Your email:</label>
<input type = "email"><br><br>
<label for ="parent/guardian_no">parent/guardian number:</label>
<input type = "number" min="1000000000" max="9999999999">
<hr>
<div>
</body>
</html>