-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (84 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Curriculum Vitae</title>
<link rel="stylesheet" type = "text/css" href="styles.css">
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="My picture.jpg" alt="I cannot fetch her picture but I bet she is nice" width="200" height="150"></td>
<td>
<h1>Parna Chowdhury</h1>
<i>Student at <a href="https://uem.edu.in/uem-kolkata/" target="_blank"> UEM, Kolkata</a></i>
<br>
<p>I am a good girl</p>
</td>
</tr>
</table>
<hr size="3">
<h2>Education: </h2>
<ul>
<li>Indian Certificate for Seocndary Examinations</li>
<li>Indian School Certificate Examinations</li>
</ul>
<br>
<hr>
<h2>Years of Schooling: </h2>
<table cellspacing=" 15" border="2" noshade>
<tr>
<td>2006-2020</td>
<td>Schooling</td>
</tr>
<tr>
<td>2020-2024</td>
<td>Bachelors in Technology, Computer Science and Engineering</td>
</tr>
</table>
<br>
<hr>
<h2>Percentage Secured: </h2>
<table cellspacing="20" border="1">
<tr>
<td>ICSE</td>
<td>90.0%</td>
</tr>
<tr>
<td>ISC</td>
<td>87.5%</td>
</tr>
</table>
<br>
<hr>
<h2>Skills : </h2>
<table cellspacing="1">
<tr>
<td>Procrastination</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Learning Instinct</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Over Thinking</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Sunflowerness</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
<br>
<hr>
<h2>
My Hobbies
</h2>
<ul>
<li>Writing</li>
<li>Eating</li>
<li>Maybe a bit of knowing to code</li>
</ul>
</body>
</html>