-
Notifications
You must be signed in to change notification settings - Fork 0
/
Institutions.html
47 lines (46 loc) · 1.05 KB
/
Institutions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Institution Details</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>Insitution Details</h3>
<hr>
<table cellspacing="20" >
<thead>
<tr>
<th>Year</th>
<th>Institution</th>
<th>Place</th>
<th>Purpose</th>
</tr>
</thead>
<tbody>
<tr>
<td>2006-2018</td>
<td>St. Mary's Convent School</td>
<td>Rourkela</td>
<td>Class KG1 to X</td>
</tr>
<tr>
<td>2018-2020</td>
<td>St.Pauls School</td>
<td>Rourkela</td>
<td>Class XI to XII</td>
</tr>
<tr>
<td>2021-2025</td>
<td>National Institute of Technology</td>
<td>Rourkela</td>
<td>BTECH in EIE</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</body>
</html>