-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtestFIle.html
72 lines (65 loc) · 2.16 KB
/
testFIle.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
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="2">
<thead>
<tr>
<th>Profile Pic</th>
<th>Git Profle</th>
<th>First Name</th>
<th>Last Name</th>
<th>Contact</th>
<th>Subject</th>
<th>Marks</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3"><img src="https://avatars.githubusercontent.com/u/32265439?s=60&v=4" alt="The image was not found"></td>
<td rowspan="3"> <a href="https://github.com/dheeraj-thedev/">ckick here to view profile</a> </td>
<td rowspan="3">student1</td>
<td rowspan="3">Singh</td>
<td rowspan="3">9718910927</td>
<td>English</td>
<td>100</td>
</tr>
<tr>
<td>Science</td>
<td>92</td>
</tr>
<tr>
<td>Maths</td>
<td>97</td>
</tr>
<tr>
<td rowspan="3"><img src="https://avatars.githubusercontent.com/u/32265439?s=60&v=4" alt="The image was not found"></td>
<td rowspan="3"> <a href="https://github.com/dheeraj-thedev/">ckick here to view profile</a> </td>
<td rowspan="3">student2</td>
<td rowspan="3">Singh</td>
<td rowspan="3">9718910927</td>
<td>English</td>
<td>78</td>
</tr>
<tr>
<td>Science</td>
<td>96</td>
</tr>
<tr>
<td>Maths</td>
<td>91</td>
</tr>
</tbody>
<footer>
<tr>
<td colspan="7"> Total Students </td>
</tr>
</footer>
</table>
</body>
</html>