-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
122 lines (112 loc) · 3.38 KB
/
resume.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
115
116
117
118
119
120
121
122
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="resume.css" />
</head>
<body>
<div class="full">
<div class="left">
<div class="image">
<img
src="https://www.google.com/logos/doodles/2015/googles-new-logo-5078286822539264.3-hp2x.gif"
alt="google logo"
style="width: 400px;"
/>
</div>
<div class="Contact">
<h2>Contact</h2>
<p><b>Email id:</b>[email protected]</p>
<p><b>Mobile no :</b>9876543210</p>
</div>
<div class="Skills">
<h2>Skills</h2>
<ul>
<li><b>Programming Languages : Python, Java, C++</b></li>
<li><b>Frontend : HTML5, CSS3, JavaScript, React</b></li>
<li><b>Backend : Node.js</b></li>
</ul>
</div>
<div class="Language">
<h2>Language</h2>
<ul>
<li>English</li>
<li>Hindi</li>
</ul>
</div>
<div class="Hobbies">
<h2>Hobbies</h2>
<ul>
<li>Playing cricket</li>
<li>Swimming</li>
<li>reading News</li>
</ul>
</div>
</div>
<div class="right">
<div class="name">
<h1>GeeksforGeeks</h1>
</div>
<div class="title">
<p>Web Developer</p>
</div>
<div class="Summary">
<h2>Summary</h2>
<p>
To secure a challenging position in a reputable organization to
expand my learning knowledge and skill
</p>
</div>
<div class="Experience">
<h2>Experience</h2>
<h3>Abc webdev pvt ltd - Senior Web Developer</h3>
<p>January 2022 to Present</p>
<ul>
<li>Actively engaged in web creative design and development.</li>
<li>Designing project & planing</li>
</ul>
<h3>Xyz webdev pvt ltd - junior web developer</h3>
<p>August 2021 to December 2021</p>
<ul>
<li>Actively engaged in web creative design and development.</li>
<li>Designing project & planing</li>
<li>Working on designing</li>
</ul>
</div>
<div class="Education">
<h2>Education</h2>
<table>
<tr>
<th>University/college</th>
<th>Passing year</th>
<th>percentage/cgpa</th>
</tr>
<tr>
<td>mnit jaipur</td>
<td>2024</td>
<td>9.9</td>
</tr>
<tr>
<td>kv Kota</td>
<td>2018</td>
<td>95.20%</td>
</tr>
</table>
</div>
<div class="project">
<ul>
<li>
<h2>Project1</h2>
<p>This project is based on html & used React</p>
</li>
<li>
<h2>Project2</h2>
<p>This project is based on html & used React</p>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>