-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentInfo.html
More file actions
34 lines (33 loc) · 849 Bytes
/
StudentInfo.html
File metadata and controls
34 lines (33 loc) · 849 Bytes
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
<!--
Function Name:StudentInfo
Description:Display Student Infornmation
Date:29/06/2021
Author: Shubham Lodha -->
<html>
<table align="center" bordercolor="green" border="2">
<tr>
<td bgcolor="orange" align="center">Sr.No</td>
<td bgcolor="orange" align="center">Roll No</td>
<td bgcolor="orange" align="center">Name</td>
<td bgcolor="orange" align="center">Team</td>
</tr>
<tr>
<td bgcolor="orange" align="center">1</td>
<td align="center">1001</td>
<td align="center">John</td>
<td align="center">Red</td>
</tr>
<tr>
<td bgcolor="orange" align="center">2</td>
<td align="center">1002</td>
<td align="center">Peter</td>
<td align="center">Blue</td>
</tr>
<tr>
<td bgcolor="orange" align="center">3</td>
<td align="center">1003</td>
<td align="center">Henry</td>
<td align="center">Green</td>
</tr>
</table>
</html>