-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (78 loc) · 2.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
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 lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Saksham's Personal Website</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td> <img src="https://media-exp1.licdn.com/dms/image/C4E03AQFfa5i4c4ZrDg/profile-displayphoto-shrink_200_200/0?e=1608768000&v=beta&t=qfyHj3CxeL4D7bbLVfXfjGgtR_bYlV6EFDrrPhif8Vk" alt="Saksham's profile picture">
<img src="Images/circle-cropped.png" alt="2nd picture" width="200" height="200"> </td>
<td> <h1>SAKSHAM MATHUR</h1>
<p><em>Student at <strong>NSUT</strong></em></p>
<p>I am currently pursuing B.Tech in BIOTECH and working on Web Development.</p></td>
</tr>
</table>
<hr>
<h3>QUALIFICATIONS</h3>
<ol type=i> <!-- type=i for roman --> <!-- if we use start=3 as we have used type list start from 3 -->
<li>XIIth-94.6%</li>
<li>Xth-95%</li>
</ol>
<hr>
<h3>HOBBIES</h3>
<ul>
<li>Playing Cricket</li>
<li>Listening Music</li>
</ul>
<hr>
<h2>Contact Details</h2>
<a href="contact.html">How to contact me</a>
<hr>
<h3>Experience</h3>
<table border="1">
<thead>
<th>Year</th>
<th>Institute</th>
<th>Class</th>
<th>Results</th>
</thead>
<tbody>
<tr>
<td>2017</td>
<td>SUMERMAL JAIN PUBLIC SCHOOL</td>
<td>Xth</td>
<td>95%</td>
</tr>
<tr>
<td>2019</td>
<td>SUMERMAL JAIN PUBLIC SCHOOL</td>
<td>XIIth</td>
<td>94.6%</td>
</tr>
</tbody>
</table>
<hr>
<h3>LANGUAGES AND SKILLS</h3>
<table cellspacing="10">
<thead>
<th>S.NO</th>
<th>SKILLS</th>
<th>Rating</th>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>C++ </td> <!-- USE win+.(full stop) for emojis -->
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>2.</td>
<td>Python</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</tbody>
</table>
</body>
</html>