-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
83 lines (70 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="this is my resume" />
<title>Resume</title>
</head>
<body>
<div>
<img src="./DAY-1-INTRO-TO-HTML/images/human-image.jpeg" alt="my-image" />
<h1>Krishn Sir</h1>
</div>
<hr />
<div>
<h2>Summary</h2>
<p>
I am a software engineer with 5 years of experience in the field. <br />
I have worked on various projects and have a good understanding of the
software development lifecycle.
</p>
</div>
<hr />
<h2>Experience</h2>
<dl>
<dt>Software engineer from 2023-Present</dt>
<dd>XYZ company</dd>
<dd>I worked as a Software engineer</dd>
<br />
<dt>Educator from 2024-Preset</dt>
<dd>Geekster</dd>
<dd>I worked as an educator, and I teach bright students</dd>
</dl>
<hr />
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node</li>
</ul>
<hr />
<h2>Education</h2>
<ol>
<li>High School</li>
<li>College</li>
</ol>
<hr />
<h2>About Me</h2>
<details>
<summary>Click me</summary>
<p>
I am a software engineer with 5 years of experience in the field. <br />
I have worked on various projects and have a good understanding of the
software development lifecycle.
</p>
</details>
<hr />
<h2>Contacts</h2>
<ul>
<li>
<a href="https://github.com/SJ22032003" target="_blank"> Github </a>
</li>
<li>
<a href="https://linkedin.com/in/shobhit-jaryal">LinkedIn</a>
</li>
</ul>
</body>
</html>