-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacademics.html
More file actions
53 lines (50 loc) · 1.15 KB
/
academics.html
File metadata and controls
53 lines (50 loc) · 1.15 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<title> Academics </title>
</head>
<body>
<div class="header">
<a href="index.html">Home</a>
<a href="personal.html">Personal</a>
<a href="contact.html">Contacts</a>
<a href="resume.html">Resume</a>
</div>
<div class="body">
<h1>Mark Sheet</h1>
<table>
<tr>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr>
<td>English</td>
<td>92</td>
</tr>
<tr>
<td>Mathematics</td>
<td>83</td>
</tr>
<tr>
<td>Phsyics</td>
<td>90</td>
</tr>
<tr>
<td>Chemistry</td>
<td>95</td>
</tr>
<tr>
<td>Computer Science</td>
<td>90</td>
</tr>
<tr>
<td>Total</td>
<td>450</td>
</tr>
</table>
</div>
<div class="footer">
<h5>Tejasva Susheel Chaudhary | 2024 batch | copyright,2025</h5>
</div>
</body>
</html>