-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<style>
body {
background-color: #eaf6f6;
}
hr {
border-style: none;
border-top-style: dotted;
border-color: grey;
border-width: 5px;
width: 5%;
}
h2 {
color: #66bfbf;
}
</style>
<head>
<meta charset="utf-8">
<title>Shreyansh's Resume</title>
</head>
<body>
<table cellspacing="20">
<td><img style="border-radius: 50%;height:180px;width:180px" alt="Shreyansh's Profile" src="Screenshot_20200412-152117.png"></td>
<td>
<h2>Shreyansh Jain</h2><br>
<p>Civil engineer <br><br>Mathematician by heart<br><br>Love to code</p>
</td>
</table>
<hr>
<h2>Education</h2>
<table cellspacing="20">
<thead> <th>Year</th><th>Level</th></thead>
<tbody>
<tr><td>2015</td><td>ICSE Class 10: 94.4%</td></tr>
<tr><td>2017</td><td>CBSE Class 12: 90.8%</td></tr>
<tr><td>2022</td><td>MSc Mathematics + BE Civil Engineering, BITS Pilani</td></tr>
</tbody>
</table>
</body>
</html>