-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (108 loc) · 3.31 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html> <!-- it is a html 5 doc type -->
<html>
<!-- eveything in between is a html code which majorly contain head and body-->
<head>
<meta charset="utf-8"> <!-- since there is lot of way to encode out data so utf-8 is a standard encoding of our text-->
<title>❤Abhishek's personal site </title> <!-- title of page -->
</head>
<body>
<table cellspacing=20>
<tr>
<td><img src="images/abhishek.png" alt="abhishek keshri image"></td>
<td> <h1>Abhishek Keshri 😊</h1>
<p>
<!-- <em></em> is used to italic line like <i></i> but em tag also emphasize the line that the line is impt . -->
<!-- for bold we can use <b></b> but we will use <Strong></Strong> because strong have meaning that the text is strongl impt.-->
<em>Grduating from <a href="http://www.nitkkr.ac.in/">Nit kurukshetra </a><strong>Master of Computer Application</strong> </em>
</p></td>
</tr>
</table>
<p>
<h3>About Me😎</h3>
My name is Abhishek Keshri . I am doing my master from nit kurukshetra in Master of Computer Application . I have just finished my 1st year
. Now i am learning html from angela yu also learning data structures and algorithm by GFG course.
my linkedln profile <a href="https://www.linkedin.com/public-profile/settings?trk=d_flagship3_profile_self_view_public_profile">linkedln</a>
</p>
<hr noshade>
<h3>Education👨🎓</h3>
<p>
<ul>
<li>
School - Gyan bharti public school . passout in 2015 batch.
</li>
<li>
High school - Gaya College . passout in 2017 batch.
</li>
<li>
UnderGraduation - <a href="https://lnmipat.ac.in/">Lalit narayan mishra institue of economic development and social change</a> . passout in 2020
</li>
<li>
Graduation -<a href="http://www.nitkkr.ac.in/">Nit Nit kurukshetra</a> . passout in 2024 batch.
</li>
</ul>
<hr>
<h3>Work Experience🤵</h3>
<table cellspacing=10>
<thead>
<tr>
<th>Years</th><th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2010-2013</td><td>Lead developer at tempo App</td>
</tr>
<tr>
<td>2010-2012</td><td> reasearcher at national institue of technology kurukshetra</td>
</table>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr>
<h3>Skills✍</h3>
<table cellspacing="10">
<tr>
<!-- <td>
<table>
<tr>-->
<td><strong>c++ - language</strong></td>
<td> ⭐⭐⭐⭐</td>
</tr>
<tr>
<td><strong>ui/ux</strong></td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>
<strong>Html</strong></td>
<td> ⭐⭐⭐⭐</td>
</tr>
<!--</table>
</td>
<td>
<table>-->
<tr>
<td><strong>Web development</strong></td>
<td>⭐⭐</td>
</tr>
<tr>
<td><strong>STL</strong></td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td><strong>CSS</strong></td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<!-- </table>
</td>
</tr>-->
</table>
<hr noshade >
<a href="hobbies.html">My hobbies</a>
<br>
<a href="contact-me.html">Contact Me</a>
</p>
</body>
</html>