-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInput.html
More file actions
45 lines (44 loc) · 1.44 KB
/
Input.html
File metadata and controls
45 lines (44 loc) · 1.44 KB
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
<html>
<body>
<h1>Grade Calculator</h1>
<hr>
<h2>Personal Information</h2>
<form action="Calculated.php" method="post">
<br>
<label>Title</label>
<select name="title">
<option value="Mr.">Mr.</option>
<option value="Mrs.">Mrs.</option>
<option value="Ms.">Ms.</option>
</select>
<br><br>
<label>Full Name</label>
<input name="Full Name" type="text">
<br><br>
<label>Student ID</label>
<input name="Student ID" type="text">
<br><br>
<hr>
<h2>Subjects</h2>
<br>
<label>Math for beginners</label>
<input name="Math" type="text">
<br><br>
<label>Introduction to Java</label>
<input name="Java" type="text">
<br><br>
<label>Basic English Structure</label>
<input name="English" type="text">
<br><br>
<label>Material Science</label>
<input name="Material" type="text">
<br><br>
<label>Basic Electric</label>
<input name="Electric" type="text">
<label>Integrated Humanity</label>
<input name="Humanity" type="text">
<br><br>
<br><br>
</form>
</body>
</html>