-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.35 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 2.35 KB
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
<!DOCTYPE html> <!--Doctype defines that the documnet type is of HTML 5-->
<html lang="en"> <!-- lang is attribute name and en is value which specifies that language is english-->
<head> <!-- Head tag is used to define all the meta data-->
<meta charset="UTF-8"><!--It defines that the character set used is UTF-8-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body style="background-color:#e0f2f7;">
<table cellspacing="20">
<tbody>
<tr>
<td><img src="Display Picture.png" alt="Sanchit Image" width="180"heigth="180"></td>
<td>
<h1>Sanchit</h1>
<p>
<em>Mechanical Engineer who loves to code</em>
</p>
<p>I just started learning HTML and this is my first website.</p>
</td>
</tr>
</tbody>
</table>
<hr>
<h3>Studies</h3>
<ul>
<li>Passed 10<sup>th</sup> class in 2017 with 94%</li>
<li>Passed 12<sup>th</sup> class in 2019 with 87%</li>
<li>Passed Btech Mechanical first sem with 6.5GPA</li>
<li>Passed Btech Mechanical second sem with 7.6GPA</li>
</ul>
<hr>
<h3>Work Experience</h3>
<table cellspacing="10">
<thead>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2018</td>
<td>Defender in Inter School Football Champaionship</td>
</tr>
<tr>
<td style="text-align: center;">2019-</td>
<td>Junior in Brakes Department at Team Mechnext Racing, SAE Baja</td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing ="10">
<tbody>
<tr>
<td>Microsoft Office</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Solidworks</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>C++</td>
<td>⭐⭐⭐</td>
</tr>
</tbody>
</table>
<hr>
<p><a href="My hobbies.html">My Hobbies</a><a href="Contact me.html">Contact Me</a></p>
</body>
</html>