-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
335 lines (282 loc) · 10.4 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<!DOCTYPE html>
<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
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Resume Generator</title>
</head>
<body>
<!-- here goes html code -->
<div class="card mx-5 mt-3" id="cv-form">
<div class="card-header">
<h1 class="text-center my-2">Resume Generator</h1>
<p class="text-center">By code{Changers}</p>
</div>
<div class="card-body">
<div class="container" >
<div class="row">
<div class="col-md-6">
<!-- first col -->
<h3>Personal Information</h3>
<div class="form-group">
<label for="nameField">Your Name</label>
<input
type="text"
id="nameField"
placeholder="Enter here"
class="form-control"
/>
</div>
<div class="form-group mt-2">
<label for="contactField">Your Contact</label>
<input
type="text"
id="contactField"
placeholder="Enter here"
class="form-control"
/>
</div>
<div class="form-group mt-2">
<label for="addressField">Your Address</label>
<textarea
id="addressField"
placeholder="Enter here"
class="form-control"
rows="5"
></textarea>
</div>
<div class="form-group mt-3">
<label for="">Select your photo</label>
<input id="imgField" type="file" class="form-control" />
</div>
<p class="text-secondary my-3">Important Links</p>
<div class="form-group mt-2">
<label for="linkedField"><img src="https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Bug.svg.original.svg" alt="LinkedIn Logo" width="35" height="35">LinkedIn</label>
<input
type="text"
id="linkedField"
placeholder="Enter here"
class="form-control"
/>
</div>
<div class="form-group mt-2">
<label for="fbField"> <img src="https://www.facebook.com/images/fb_icon_325x325.png" alt="Facebook Logo" width="35" height="35">Facebook </label>
<input
type="text"
id="fbField"
placeholder="Enter here"
class="form-control"
/>
</div>
<div class="form-group mt-2">
<label for="instaField"><img src="https://www.instagram.com/static/images/ico/favicon-192.png/68d99ba29cc8.png" alt="Instagram Logo" width="35" height="35">Instagram </label>
<input
type="text"
id="instaField"
placeholder="Enter here"
class="form-control"
/>
</div>
</div>
<div class="col-md-6">
<!-- second col -->
<h3>Professional Information</h3>
<div class="form-group mt-2">
<label for="">Objective</label>
<textarea
id="objectiveField"
rows="5"
placeholder="Enter here"
class="form-control"
></textarea>
</div>
<div class="form-group mt-2" id="we">
<label for="">Work Experience</label>
<textarea
placeholder="Enter here"
class="form-control weFild"
rows="3"
></textarea>
<!-- new textarea -->
<div class="container text-center mt-2" id="weAddButton">
<button
onclick="addNewWEField()"
class="btn btn-primary btn-sm"
>
Add
</button>
</div>
</div>
<!----skills-->
<div class="form-group mt-2" id="sk">
<label for="">Skills</label>
<textarea
placeholder="Enter here"
class="form-control skField"
rows="3"
></textarea>
<!-- new textarea -->
<div class="container text-center mt-2" id="skAddButton">
<button
onclick="addNewSKField()"
class="btn btn-primary btn-sm"
>
Add
</button>
</div>
</div>
<!----award/honour-->
<div class="form-group mt-2" id="ad">
<label for="">awards/honours</label>
<textarea
placeholder="Enter here"
class="form-control adField"
rows="3"
></textarea>
<!-- new textarea -->
<div class="container text-center mt-2" id="adAddButton">
<button
onclick="addNewADField()"
class="btn btn-primary btn-sm"
>
Add
</button>
</div>
</div>
<div class="form-group mt-2" id="aq">
<label for="">Academic Qualification</label>
<textarea
placeholder="Enter here"
class="form-control eqField"
rows="3"
></textarea>
<div class="container text-center mt-2" id="aqAddButton">
<button
onclick="addNewAQField()"
class="btn btn-primary btn-sm"
>
Add
</button>
</div>
</div>
</div>
</div>
<div class="container text-center mt-3">
<button onclick="generateCV()" class="btn btn-primary btn-lg">
Generate CV
</button>
</div>
</div>
</div class="card-body">
</div>
<!-- cv template -->
<div class="container" id="cv-template">
<div class="row">
<div class="col-md-4 text-center py-5 background">
<!-- first col -->
<img
src="https://images.news18.com/ibnlive/uploads/2023/01/sundar-pichai.png"
alt=""
class="img-fluid myimg"
id="imgTemplate"
/>
<div class="container">
<p id="nameT1">Rishab Bhardwaj</p>
<p id="contactT">+914542454541,+9154564154</p>
<p id="addressT">jlpl , INDIA</p>
<hr />
<p>
<!-- <a id="fbT" href="#1"
>https://www.facebook.com/Rishab</a
> -->
<a id="fbT" href="#1"
>Facebook</a
>
</p>
<p>
<a id="instaT" href="#1">https://www.instagram.com/Rishab_k_t</a>
</p>
<p>
<a id="linkedT" href="#1"
>https://www.linkedin.com/RishabBh</a
>
</p>
</div>
</div>
<div class="col-md-8 py-3">
<!-- second col -->
<h1 id="nameT2" class="text-center" style="font-weight: 980">
Rishab Bhardwaj
</h1>
<!-- objective card -->
<div class="card mt-4">
<div class="card-header background">
<h3>Objective</h3>
</div>
<div class="card-body">
<p id="objectiveT">
Write your objective to showcase in front of interviewer, try to write your objective in limited word.
</p>
</div>
</div>
<!-- work Experience -->
<div class="card mt-4">
<div class="card-header background">
<h3>Work Experience</h3>
</div>
<div class="card-body">
<ul id="weT">
<li>
</ul>
</div>
</div>
<div class="card mt-4">
<div class="card-header background">
<h3>skills</h3>
</div>
<div class="card-body">
<ul id="skT">
</ul>
</div>
</div>
<div class="card mt-4">
<div class="card-header background">
<h3>Award/honour</h3>
</div>
<div class="card-body">
<ul id="adT">
</ul>
</div>
</div>
<!-- academic Qualification -->
<div class="card mt-4">
<div class="card-header background">
<h3>Academic Qualification</h3>
</div>
<div class="card-body">
<ul id="aqT">
</ul>
</div>
</div>
<div class="container mt-3 text-center">
<button onclick="printCV()" class="btn background">Print CV</button>
</div>
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>