-
Notifications
You must be signed in to change notification settings - Fork 0
/
marksheet.html
executable file
·26 lines (21 loc) · 1.04 KB
/
marksheet.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Student's Marksheet</title>
</head>
<body>
<form class="" action="http://localhost:8080/marksheet/ms" method="post">
Full Name: <input type="text" name="name"><br>
Enter Your subject-1 code: <input type="text" name="subject1" maxlength="7"size="7">
Enter your marks: <input type="text" name="mark1" maxlength="2" size="2"><br>
Enter Your subject-2 code: <input type="text" name="subject2" maxlength="7" size="7">
Enter your marks: <input type="text" name="mark2" maxlength="2" size="2"><br>
Enter Your subject-3 code: <input type="text" name="subject3" maxlength="7"size="7">
Enter your marks: <input type="text" name="mark3" maxlength="2" size="2"><br>
Enter Your subject-4 code: <input type="text" name="subject4" maxlength="7"size="7">
Enter your marks: <input type="text" name="mark4" maxlength="2" size="2"><br>
<input type="submit" name="submit" value="Get Marksheet">
</form>
</body>
</html>