-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Resume</title>
<style>
#footer {
padding: 20px;
}
</style>
</head>
<body>
<h2>Naman Kumar</h2>
<img height="100px" width="100px" src="./pic2.jpg" />
<hr />
<h3>Summary</h3>
<p>
Hello, myself Naman. I'm a 3rd year Btech student, a new developer, a hard
and smart working guy as per the situation.
</p>
<hr>
<h3>Education</h3>
<ul>
<li>
Btech (2021-2025)
<ol>
<li>Institution: Delhi Technological University</li>
<li>CGPA : 7.5</li>
<li>Specification : Mathematics and Computing</li>
</ol>
</li>
<li>
Class 12th (2020)
<ol>
<li>Board: CBSE</li>
<li>Percentage : 92.25%</li>
</ol>
</li>
<li>
Class 10th (2018)
<ol>
<li>Board: CBSE</li>
<li>CGPA : 90%</li>
</ol>
</li>
</ul>
<hr>
<h3>Projects</h3>
<ul>
<li>Birthday Invitaion</li>
<li>Movies Ranking</li>
</ul>
<hr>
<h3>Skills</h3>
<ul>
<li>C++</li>
<li>DSA</li>
<li>Frontend Developer</li>
<li>Team Work</li>
<li>Communication</li>
</ul>
<hr>
<h3>Awards and Certificate</h3>
<ul>
<li>DSA in C++</li>
<li>State level essay writing 2nd runner-up</li>
<li>hack the mountain: hackathon</li>
</ul>
<hr />
<footer>
<a href="./contact/index.html">Contact_Me</a>
</footer>
</body>
</html>