-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (137 loc) · 3.61 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!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>
body{
background-color: lightgrey;
padding : 20px;
margin-top: auto ;
margin-bottom: auto;
}
h1{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: purple;
font-size: 50px;
text-shadow: 2px 2px whitesmoke;
}
footer{
text-align: center;
text-shadow: 2px 2px wheat;
}
h2{
font-size: 25px;
color:black;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: 100;
font-style: bold ;
text-shadow: 2px 2px hotpink;
}
p{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 15px;
}
li{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 15px;
}
hr{
border: 2px solid black;
box-shadow: 2px 2px beige;
}
table{
text-align: left;
position: relative;
border-collapse: collapse;
background-color: lightgrey;
}
td,th{
border: 2px solid purple;
padding: 16px;
}
th{
background-color: plum;
color: black;
border-radius: 0;
position: sticky;
top: 0%;
padding: 10px;
}
</style>
</head>
<body>
<h1> MY RESUME </h1>
<img src="IMG_20231207_114044.jpg" height="200px" width="155px"/>
<h2>simran singh</h2>
<P>PHONE NO. : 8604879594</P>
<P>EMAIL I.D :[email protected] </P>
<hr/>
<h2>Summary</h2>
<p> I am a hardworking and dedicated towards my work and gaining lots of knowledge related to my work to purse my future job and become assests for an organisation . </p>
<hr/>
<h2>Education </h2>
<table>
<tr>
<th>Institution</th>
<th>Course/Standard</th>
<th>year</th>
</tr>
<tr>
<td>University of Lucknow </td>
<td>Bachelor of Computer Application </td>
<td>2022 -2025</td>
</tr>
<tr>
<td>Career Conevnt Girls College</td>
<td>12th (cicse)</td>
<td>2022</td>
</tr>
<tr>
<td>Career Convent Girls College </td>
<td>10th(cisce)</td>
<td>2019</td>
</tr>
</table>
<hr/>
<h2>Work Experience </h2>
<ul>
<li>
<h3>Student Co-ordinator -- Training and Placement Cell, FOET UOL </h3>
<p>Feb 2022 - May 2024</p>
<ul>
<li> <p> Answered HR's inquires via cold calls and email .</p> </li>
<li> <p> Resolved many problems of HR's regarding placements drive. </p></li>
<li><p>Made 150 plus cold calls to HR's for the placement drives .</p></li>
</ul>
</li>
</ul>
<hr/>
<h2>Skills</h2>
<ul>
<li> <h4>Java</h4> </li>
<li> <h4>Ms office</h4> </li>
<li> <h4>Html</h4> </li>
<li> <h4>Css</h4> </li>
<li> <h4>Bootstrap</h4> </li>
<li> <h4>Problem solving</h4> </li>
<li> <h4>Strong communication </h4> </li>
</ul>
<hr/>
<h2>Awards and certications </h2>
<ul>
<li> <p> 1st winner in algozenith track .</p>
</li>
<li><p>certication of completion course HTML & CSS for beginners with Html 5 at infosys springboard . </p></li>
<li><p>3 star in java hackerrank .</p> </li>
<li><P>certificate of excellence of completing master AZ 101 c++ at algozenith. </P></li>
</ul>
<hr/>
<h2>Personal Details </h2>
<a href="hobbies.html" > Personal details </a> <br/>
<p> All the details are provided in above link .</p>
<hr/>
</body>
<footer>© All copyrights are reserved by <a href="https://www.linkedin.com/in/simran-singh-b7b67825a">simran singh </a> </footer>
</htm