-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheducation.html
82 lines (82 loc) · 2.75 KB
/
education.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
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Education</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="education.css">
<link href="https://fonts.googleapis.com/css?family=Bungee|Slabo+27px|Abril+Fatface" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#portfolio" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="portfolio.html" class="navbar-brand">DSC</a>
</div>
<div class="collapse navbar-collapse" id="portfolio">
<ul class="nav navbar-nav">
<li><a href="about.html">About</a></li>
<li class="active"><a href="education.html">Education</a></li>
<li><a href="coding.html">Coding Playground</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="achievements.html">Achievements</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="container content">
<h1>Education</h1>
<table border="2">
<thead >
<tr>
<th> SI No. </th>
<th> Course </th>
<th> Institution/School </th>
<th> Board/University </th>
<th> Years of passing </th>
<th> Aggregate </th>
</tr>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>B.Tech (Computer Science and Engineering)</td>
<td>Indian Institute of Information Technology, Kalyani</td>
<td>IIIT Kalyani</td>
<td>Dec 2017 (pursuing)</td>
<td>9.2</td>
</tr>
<tr>
<td>2.</td>
<td>Higher Secondary</td>
<td>Sunbeam School Lahartara, Varanasi</td>
<td>Central Board of Secondary Education</td>
<td>March 2016</td>
<td>93%</td>
</tr>
<tr>
<td>3.</td>
<td>Matriculation</td>
<td>St. John's School Marhauli, Varanasi</td>
<td>Council for the Indian School Certificate Examinations</td>
<td>March 2014</td>
<td>94.7%</td>
</tr>
</tbody>
</table>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"crossorigin="anonymous"></script>
</body>
</html>