-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (77 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Priyanka's personal site</title>
</head>
<body>
<h1>PRIYANKA NEGI</h1>
<table>
<tr>
<td>
<img src="priyanka.png" alt="priyanka negi's profile" height="150">
</td>
<td>
2nd year B-Tech student in <a href="https://www.gehu.ac.in/">Graphic Era Hill university</a><br>
studying web development <br>
sgpa:7.6
</td>
</tr>
</table>
<hr size="3">
<h3>books & learning</h3>
<ul>
<li>web development bootcamp</li>
<li>python application</li>
</ul>
<hr size="3">
<h3>work experience</h3>
<table>
<thead>
<td>YEAR</td>
<td>COMPLETEd </td>
<td>SCORE</td>
</thead>
<tbody>
<tr>
<td>2018-2019</td>
<td>10th</td>
<td>9.2</td>
</tr>
<tr>
<td>2020-2021</td>
<td>12th</td>
<td>8.0</td>
</tr>
<tr>
<td>2021-2025</td>
<td>graduation</td>
<td>7.6</td>
</tr>
</tbody>
</table>
<hr>
<h3>skills</h3>
<table>
<tr>
<td>c/c++</td>
<td>⭐️⭐️</td>
</tr>
<tr>
<td>python</td>
<td>⭐️⭐️⭐️</td>
</tr>
<tr>
<td>web development</td>
<td>⭐️⭐️</td>
</tr>
<tr>
<td>dancing</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
</table>
<hr>
<a href="hobbies.html"> my hobbies </a>
<a href="contact.html"> <h3>contact me </h3></a>
</body>
</html>