-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathresumegenerator.html
897 lines (759 loc) · 49.4 KB
/
resumegenerator.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
<!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">
<title>Resume Generator</title>
<!-- Link to external Font Awesome library for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Link to Bootstrap CSS for responsive design -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- Link to custom styles -->
<link rel="stylesheet" href="style.css">
<!-- Google Analytics tracking script -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MKEW6GTMGN"></script>
<script>
// Google Analytics setup
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-MKEW6GTMGN');
</script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<!-- Left section: CV Form -->
<div class="col-md-6 cv-form">
<div class="cv-form">
<div class="cv-form">
<div class="container-md p-2">
<!-- Header: Institute and form title -->
<h1 class="text-center my-2">Smart LATEX Resumes with AI</h1>
<!-- <h5 class="text-center my-2">LaTeX Resume Generator</h5> -->
<div>Enter your details and a preview your resume will be generated live on your right side.
Using a laptop is recommended.<br><br>
<!-- Steps to Generate Resume -->
<h3>Steps to Generate Your Resume:</h3>
<ul>
<li>Step 1: Fill in your personal information.</li>
<li>Step 2: Copy the LaTeX code.</li>
<li>Step 3: Paste it in a LaTeX editor like Overleaf and Compile.</li>
<li>Step 4: You can use the integrated AI assistant to enhance your resume!</li>
</div>
<!-- Section: Personal Details -->
<div class="form-group">
<h3>Personal Details</h3>
<!-- Name input -->
<label for="name" class="fw-bold my-2">Name</label>
<input type="text" placeholder="Enter your name" class="form-control" id="nameF">
<!-- Current Year input -->
<label for="year" class="fw-bold my-2">Current Year</label>
<input type="text" placeholder="Eg.: Second Year Undergraduate"
class="form-control my-2" id="CGradF">
<!-- Program input -->
<label for="program" class="fw-bold my-2">Program</label>
<input type="text" placeholder="Enter your discipline. Eg: Computer Science Engineering"
class="form-control my-2" id="BranchF">
<!-- Email input -->
<label for="email" class="fw-bold my-2">Email Id</label>
<input type="text" placeholder="email id" class="form-control my-2" id="emailF">
<!-- Contact number input -->
<label for="number" class="fw-bold my-2">Contact number</label>
<input type="text" placeholder="Enter your number" class="form-control my-2"
id="contactF">
<!-- Links Section: GitHub, LinkedIn, Website -->
<label for="" class="fw-bold my-2">Github</label>
<input type="text" placeholder="Paste your GitHub account link"
class="form-control my-2" id="gitF">
<label for="" class="fw-bold my-2">LinkedIn</label>
<input type="text" placeholder="Paste your LinkedIn account link"
class="form-control my-2" id="linkedinF">
<label for="" class="fw-bold my-2">Website</label>
<input type="text" placeholder="Paste your website link" class="form-control my-2"
id="websiteF">
<!-- jQuery for updating dynamic links using user input -->
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script>
$(document).ready(function () {
const gitInput = $("#gitF");
const linkedinInput = $("#linkedinF");
const websiteInput = $("#websiteF");
const githubLink = $("#githubLink");
const linkedinLink = $("#linkedinLink");
const websiteLink = $("#websiteLink");
// Update GitHub link dynamically
gitInput.on("input", function () {
const githubUrl = gitInput.val();
githubLink.attr("href", githubUrl);
});
// Update LinkedIn link dynamically
linkedinInput.on("input", function () {
const linkedinUrl = linkedinInput.val();
linkedinLink.attr("href", linkedinUrl);
});
// Update Website link dynamically
websiteInput.on("input", function () {
const websiteUrl = websiteInput.val();
websiteLink.attr("href", websiteUrl);
});
});
</script>
<!-- Section: Academic Details -->
<h3>Academic Details</h3>
<!-- PhD information fields with toggle Functionality -->
<label for="name" class="fw-bold my-2">PhD </label>
<input type="checkbox" id="phdCheckbox" style="accent-color: black;"></input><br>
<div id="phdDiv">
(If you don't want to add this, untick the checkbox above.)
<input type="text" placeholder="Enter Institute name" class="form-control my-2"
id="institutephdF">
<input type="text" placeholder="Enter Specialization" class="form-control my-2"
id="specializationphdF">
<input type="text" placeholder="CPI/CGPA" class="form-control my-2" id="marksphdF">
<input type="text" placeholder="Year of completion. Ex: 2018-2019"
class="form-control my-2" id="yearphdF">
</div>
<!-- MTech information fields with toggle functionality -->
<label for="name" class="fw-bold my-2">M.Tech </label>
<input type="checkbox" id="mtechCheckbox" style="accent-color: black;"></input><br>
<div id="mtechDiv">
(If you don't want to add this, untick the checkbox above.)
<input type="text" placeholder="Enter Institute name" class="form-control my-2"
id="institutemtechF">
<input type="text" placeholder="Enter Specialization" class="form-control my-2"
id="specializationmtechF">
<input type="text" placeholder="CPI/CGPA" class="form-control my-2"
id="marksmtechF">
<input type="text" placeholder="Year of completion. Ex: 2018-2019"
class="form-control my-2" id="yearmtechF">
</div>
<!-- BTech information fields -->
<label for="name" class="fw-bold my-2">B.Tech</label>
<input type="text" placeholder="Enter Institute Name" class="form-control my-2"
id="InsF">
<input type="text" placeholder="Enter Specialization" class="form-control my-2"
id="SpecF">
<input type="text" placeholder="CPI/CGPA" class="form-control my-2" id="CPIF">
<input type="text" placeholder="Years of Degree, Eg: 2022-26" class="form-control my-2"
id="YOJF">
<!-- Class 12th information fields -->
<label for="name" class="fw-bold my-2">Class 12th</label>
<input type="text" placeholder="Enter Institute name" class="form-control my-2"
id="institutetwelveF">
<input type="text" placeholder="Marks secured in 12th" class="form-control my-2"
id="markstwelveF">
<input type="text" placeholder="Year of completion. Ex: 2018-2019"
class="form-control my-2" id="yeartwelveF">
<!-- Class 10th information fields -->
<label for="name" class="fw-bold my-2">Class 10th</label>
<input type="text" placeholder="Enter Institute name" class="form-control my-2"
id="institutetenF">
<input type="text" placeholder="Marks secured in 10th" class="form-control my-2"
id="markstenF">
<input type="text" placeholder="Year of completion. Ex: 2018-2019"
class="form-control my-2" id="yeartenF">
<!-- Internship section with dynamic addition functionality -->
<div id="interns-container">
<h3>Internships <input type="checkbox" id="internshipCheckBox"
style="accent-color: black;"></h3>
<p>Click on the check box to add this section.</p>
<div id="internshipDetailL1" class="hidden">
<div class="form-group" id="interns">
<input type="text" placeholder="Intern Title and company name"
class="form-control internships my-2" id="internTitleF">
<input type="text"
placeholder="Company/Role information. Appears in italics under the title."
class="form-control my-2" id="internInfoF">
<input type="text" placeholder="Project link" class="form-control my-2"
id="internLinkF">
<textarea type="text" placeholder="Enter the description line 1"
class="form-control my-2" rows="3" id="interndescriptionF"></textarea>
<textarea type="text" placeholder="Enter the description line 2"
class="form-control my-2" rows="3" id="interndescription2F"></textarea>
<input type="text" placeholder="Duration of project Ex: May’22-Dec’22"
class="form-control my-2" id="yearinternF">
</div>
</div>
</div>
<!-- Buttons for enhancing and updating internships -->
<div id="internshipDetailL2">
<!-- Button to add a new internship -->
<button onclick="addNewIntern()" class="btn btn-dark btn-lg hidden"
id="internaddbutton">Add This</button>
<!-- Button to enhance internship descriptions using AI -->
<button onclick="enhanceDescription('internship')"
class="btn btn-dark btn-lg hidden" id="internenhancebutton">Enhance using AI
</button>
<!-- Button to update an existing internship -->
<button class="btn btn-dark btn-lg hidden" id="internupdatebutton">Update</button>
<div id="internshipDetailR">
You must click the button to add this to LaTeX code.
</div>
<br>
<!-- Instructions for editing or deleting internships -->
<div class="form-group hidden" id="internEditComment">If you want to edit an
internship, click on edit <br> If you want to delete an internship, click on
delete
</div>
<!-- Container for editing internships -->
<div class="form-group" id="internsEdit"></div>
</div>
<!-- Section for Projects -->
<div id="projects-container">
<h3>Projects</h3>
<!-- Instructions for LaTeX code generation -->
<div>
(If you dont want to include this, leave it blank and delete this section from
the LaTeX code generated.)
</div>
<!-- Form for project details -->
<div class="form-group" id="projects">
<input type="text" placeholder="Project Title" class="form-control my-2"
id="projectTitleF">
<input type="text" placeholder="Italics line under title. Eg:- Advisor: ABC "
class="form-control my-2" id="projectInfoF">
<input type="text" placeholder="Project Link" class="form-control my-2"
id="projectLinkF">
<textarea type="text" placeholder="Enter the description of the project"
class="form-control my-2" rows="3" id="projectdescriptionF"></textarea>
<textarea type="text" placeholder="Enter the description of the project"
class="form-control my-2" rows="3" id="projectdescription2F"></textarea>
<input type="text" placeholder="Duration of project Ex: May’22-Dec’22"
class="form-control my-2" id="yearprojectF">
</div>
</div>
<!-- Button to add a new project -->
<button onclick="addNewProject()" class="btn btn-dark btn-lg" id="projectaddbutton">Add
This</button>
<!-- Button to enhance project descriptions using AI -->
<button onclick="enhanceDescription('project')" class="btn btn-dark btn-lg">Enhance
using AI</button>
<!-- Button to update an existing project -->
<button class="btn btn-dark btn-lg hidden" id="projectupdatebutton">Update</button>
<div>You must click the button to add this to LaTeX code.</div><br>
<!-- Instructions for editing or deleting projects -->
<div class="form-group hidden" id="projectEditComment">If you want to edit a project,
click on edit. <br> If you want to delete a project, click on delete.
</div>
<!-- Container for editing projects -->
<div class="form-group" id="projectsEdit"></div>
<div class="form-group hidden" id="projecteditbuttonComment">If you want to edit a
project, then click on edit.
</div>
<div class="form-group" id="projectsEdit"></div>
<!-- Section for Skills -->
<h3>Skills</h3>
<div>
(If you dont want to include this, leave it blank and delete this section from the
LaTeX code generated.)
</div>
<!-- Skills Form -->
<div class="form-group" id="skills">
<input type="text" placeholder="Name your skill Ex: Technical, Finance"
class="form-control my-2" id="skilltypeF">
<textarea type="text" placeholder="Enter a brief description of your skill"
class="form-control my-2" rows="1" id="skilldescriptionF"></textarea>
</div>
<!-- Button to add a new skill -->
<button onclick="addNewSkill()" class="btn btn-dark btn-lg" id="skillAddButton">Add
This</button>
<!-- Button to update an existing skill -->
<button class="btn btn-dark btn-lg hidden" id="skillUpdateButton">Update</button>
<div>You must click the button to add this to LaTeX code.</div>
<br>
<!-- Instructions for editing or deleting skills -->
<div class="form-group hidden" id="skillEditComment">If you want to edit a skill, click
on edit. <br> If you want to delete a skill, click on delete.
</div>
<!-- Container for editing skills -->
<div id="skillsEdit"></div>
<!-- Section for Position of Responsibility -->
<h3>Position of Responsibility</h3>
<div>
(If you don't want to include this, leave it blank and delete this section from the
LaTeX code generated.)
</div>
<!-- Position of Responsibility Form -->
<div class="form-group" id="PORs">
<input type="text" placeholder="Name your POR" class="form-control my-2"
id="PORNameF">
<textarea type="text" placeholder="describe your POR" class="form-control my-2"
rows="1" id="PORdescriptionF"></textarea>
<textarea type="text" placeholder="describe your POR" class="form-control my-2"
rows="1" id="PORdescription2F"></textarea>
<input type="text" placeholder="Duration of POR Ex: May’22-Dec’22"
class="form-control my-2" id="PORdurationF">
</div>
<!-- Button to add a new Position of Responsibility -->
<button onclick="addNewPOR()" class="btn btn-dark btn-lg" id="PORAddButton">
Add This
</button>
<!-- Button to update an existing position of responsibility -->
<button class="btn btn-dark btn-lg hidden" id="PORUpdateButton">Update</button>
<div>You must click the button to add this to LaTeX code.</div>
<br>
<!-- Instructions for editing or deleting PORs -->
<div class="form-group hidden" id="POREditComment">If you want to edit a POR, click on
edit. <br> If you want to delete a POR, click on delete.</div>
<!-- Container for editing POR -->
<div id="PORsEdit"></div>
<!-- Section for Achievements -->
<h3>Achievements</h3>
<div>
(If you don't want to include this, leave it blank and delete this section from the
LaTeX code generated.)
</div>
<!-- Achievements Form -->
<div class="form-group" id="achievements">
<input type="text" placeholder="Name your achievement" class="form-control my-2"
id="achievementNameF">
</div>
<!-- Button to add a new Position of Responsibility -->
<button onclick="addNewAchievement()" class="btn btn-dark btn-lg"
id="achievementAddButton">Add This</button>
<!-- Button to update an existing Achievements -->
<button class="btn btn-dark btn-lg hidden" id="achievementUpdateButton">Update</button>
<div>You must click the button to add this to LaTeX code.</div>
<br>
<!-- Instructions for editing or deleting Achievements -->
<div class="form-group hidden" id="achievementEditComment">If you want to edit an
achievement, click on edit.<br> If you want to delete an achievement, click on
delete.
</div>
<!-- Container for editing Achievements -->
<div id="achievementsEdit"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Right Half: CV Template -->
<div class="col-md-6">
<div class="cv-template" id="cv-template">
<!-- Your CV Template content -->
<div class="cv-template" id="cv-template">
<div class="container-md p-2" id="Cvtemplate">
<h1 class="text-center my-2">Resume Preview</h1>
<h5 class="text-center my-2">A rough preview. Differs from the LaTeX output. <br> Check the
LaTeX code for a clean and professional resume.</h5>
<!--Personal details here-->
<div class="row">
<div class="col p-0">
<p class="text-am-start my-0 fw-bold lh-sm" id="nameT">Name</p>
</div>
<div class="col p-0">
<p class="text-sm-end my-0 lh-sm" id="emailT">Email</p>
</div>
</div>
<div class="row">
<div class="col p-0">
<span class="text-sm-start my-0 lh-sm" id="CGradT">Year of graduation</span>
</div>
<div class="col p-0">
<p class="text-sm-end my-0 lh-sm" id="contactT">contact number</p>
</div>
</div>
<div class="row">
<div class="col p-0">
Discipline of <span class="text-sm-start my-0" id="BranchT">Disicipline</span>
</div>
<div class="col d-flex justify-content-end p-0">
<div class="linkedin p-0">
<a id="linkedinLink" href="#"
class="text-black no-underline hover:text-gray-500">Linkedin</a>
</div>
<span class="mx-2">|</span>
<div class="git p-0">
<a id="githubLink" href="#"
class="text-black no-underline hover:text-gray-500">Github</a>
</div>
<span class="mx-2">|</span>
<div class="website p-0">
<a id="websiteLink" href="#"
class="text-black no-underline hover:text-gray-500">Website</a>
</div>
</div>
</div>
<!--Academic details start here-->
<div class="row my-0" style="background-color: lightgray;">
<p class="fw-bold my-0 p-0">ACADEMIC DETAILS</p>
</div>
<!-- Table header row for academic details -->
<div class="row lh-sm">
<div class="col-2 p-0">
<p class="text-sm lh-sm fw-bold my-0">Degree</p>
</div>
<div class="col-6 p-0">
<p class="text-sm-start lh-sm fw-bold my-0">Institute</p>
</div>
<div class="col-2" style="padding-left:3px ;">
<p class="text-sm lh-sm fw-bold my-0">CPI/%</p>
</div>
<div class="col-2 p-0">
<p class="text-sm lh-sm fw-bold my-0">Year</p>
</div>
<hr class="my-0">
</div>
<!-- Academic details for Ph.D -->
<div class="row" id="phdDivR">
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0">Ph.D</p>
</div>
<div class="col-6 p-0">
<p class="text-sm lh-sm my-0" id="PINST"></p>
</div>
<div class="col-2" style="padding-left:3px ;">
<p class="text-sm lh-sm my-0" id="PCPIT">CPI/%</p>
</div>
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0" id="PYOJT">Year</p>
</div>
</div>
<!-- Academic details for M.Tech -->
<div class="row" id="mtechDivR">
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0">M.Tech</p>
</div>
<div class="col-6 p-0">
<p class="text-sm lh-sm my-0" id="MINST"></p>
</div>
<div class="col-2" style="padding-left:3px ;">
<p class="text-sm lh-sm my-0" id="MCPIT">CPI/%</p>
</div>
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0" id="MYOJT">Year</p>
</div>
</div>
<!-- Academic details for B.Tech -->
<div class="row">
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0">B.Tech</p>
</div>
<div class="col-6 p-0">
<p class="text-sm lh-sm my-0" id="INST"></p>
</div>
<div class="col-2" style="padding-left:3px ;">
<p class="text-sm lh-sm my-0" id="CPIT">CPI/%</p>
</div>
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0" id="YOJT">Year</p>
</div>
</div>
<!-- Academic details for Class XII -->
<div class="row">
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0">Class XII</p>
</div>
<div class="col-6 p-0">
<p class="text-sm lh-sm my-0" id="institutetwelveT">Institue Name</p>
</div>
<div class="col-2" style="padding-left:3px ;">
<p class="text-sm lh-sm my-0" id="markstwelveT">CPI/%</p>
</div>
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0" id="yeartwelveT">Year</p>
</div>
</div>
<!-- Academic details for Class X -->
<div class="row">
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0">Class X</p>
</div>
<div class="col-6 p-0">
<p class="text-sm lh-sm my-0" id="institutetenT">Institute Name</p>
</div>
<div class="col-2" style="padding-left:3px ;">
<p class="text-sm lh-sm my-0" id="markstenT">CPI/%</p>
</div>
<div class="col-2 p-0">
<p class="text-sm lh-sm my-0" id="yeartenT">Year</p>
</div>
<hr class="my-0">
</div>
<!-- Internship details start here -->
<div id="internshipDetailR">
<!-- Header row for the Internship section -->
<div class="row my-0" style="background-color: lightgray;">
<p class="fw-bold my-0 p-0">INTERNSHIPS</p>
</div>
<!-- List of internships -->
<ul style="list-style-type:none;" class="my-0 p-0" id="internlistT">
<li>
<!-- Internship title and company name with duration -->
<div class="row">
<div class="col-8 p-0">
<p class="fw-bold my-0" id="internTitleT">Title of Internship, name of
company</p>
</div>
<div class="col-4 p-0">
<span class="text-sm-end fw-bold my-0" id="yearinternT">[Years of
internship]</span>
</div>
</div>
<!-- Company or role information -->
<div class="row">
<div class="col-12">
<span class="text-sm fst-italic" id="internInfoT">[Company/Role
information. Appears in italics under the title.]</span>
</div>
</div>
<!-- Internship description -->
<div class="row">
<p class="text-sm p-0 my-0 justify-content" id="interndescriptionT">...</p>
<p class="text-sm p-0 my-0 justify-content" id="interndescription2T">...</p>
</div>
</li>
</ul>
</div>
<!-- Projects section -->
<div class="row my-0" style="background-color: lightgray;">
<p class="fw-bold my-0 p-0">PROJECTS</p>
</div>
<!-- List of projects -->
<ul style="list-style-type:none;" class="my-0 p-0" id="projectlist">
<li>
<!-- Project title and professor name with duration -->
<div class="row">
<div class="col-8 p-0">
<p class="fw-bold my-0" id="projectTitleT">Title of Project, name of
concerned professor</p>
</div>
<div class="col-4 p-0">
<p class="text-sm-end fw-bold my-0" id="yearprojectT">[Duration of project]
</p>
</div>
</div>
<!-- Technologies used and project link -->
<div class="row">
<div class="col-8" id="projectInfoT">
<p class="text-sm fst-italic">[Used Technologies Eg:- HTML, JS, CSS ...]</p>
</div>
<div class="col-4" id="projectLinkT">
<p class="text-sm fst-italic">[Project link]</p>
</div>
</div>
<!-- Project description -->
<div class="row">
<p class="text-sm p-0 my-0 justify-content" id="projectDescriptionT">...</p>
<p class="text-sm p-0 my-0 justify-content" id="projectDescription2T">...</p>
</div>
</li>
</ul>
<!-- Skills section -->
<div class="row my-0" style="background-color: lightgray;">
<p class="fw-bold my-0 p-0">SKILLS</p>
</div>
<!-- List of skills -->
<ul style="list-style-type:none;" class="my-0 p-0" id="skillList">
<li>
<!-- Skill type -->
<div class="row">
<div class="col-8 p-0">
<p class="fw-bold my-0" id="skilltypeT">Type of Skill</p>
</div>
</div>
<!-- Skill description -->
<div class="row">
<p class="text-sm p-0 my-0 justify-content" id="skilldescriptionT">...</p>
</div>
</li>
</ul>
<!-- Positions of Responsibility section -->
<div class="row my-0" style="background-color: lightgray;">
<p class="fw-bold my-0 p-0">POSITIONS OF RESPONSIBILITY</p>
</div>
<!-- List of positions -->
<ul style="list-style-type:none;" class="my-0 p-0" id="PORList">
<li>
<!-- Position name and duration -->
<div class="row">
<div class="col-8 p-0">
<p class="fw-bold my-0" id="PORNameT">POR Name</p>
</div>
<div class="col-4 p-0">
<p class="text-sm-end fw-bold my-0" id="PORdurationT">[Duration of POR]</p>
</div>
</div>
<!-- Position description -->
<div class="row">
<p class="text-sm p-0 my-0 justify-content" id="PORdescriptionT">...</p>
<p class="text-sm p-0 my-0 justify-content" id="PORdescription2T">...</p>
</div>
</li>
</ul>
<!-- Achievements section -->
<div class="row my-0" style="background-color: lightgray;">
<p class="fw-bold my-0 p-0">ACHIEVEMENTS</p>
</div>
<!-- List of achievements -->
<ul style="list-style-type:none;" class="my-0 p-0" id="achievementList">
<div class="row">
<p class="my-0" id="achievementNameT">Achievement Name</p>
</div>
</ul>
</div>
<!-- Button to copy LaTeX code -->
<div class="form-group">
<div class="d-grid gap-2 col-6 mx-auto my-4">
<button class="btn btn-dark btn-lg" onclick="copyToClipboard()">Copy LaTeX Code to
Clipboard</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Latex code begins -->
<pre id="latexCode" style="display:none;">
\documentclass[a4paper,10pt]{article}
%-----------------------------------------------------------
\usepackage[top=0.1cm, bottom=0.3cm, left=0.3cm, right=1.1cm, nohead, nofoot]{geometry}
\usepackage{graphicx}
\usepackage{url}
\usepackage{palatino}
\usepackage{booktabs}
\usepackage{hyperref}
\fontfamily{SansSerif}
\selectfont
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{color}
\definecolor{mygrey}{gray}{0.75}
\textheight = 29.1 cm
\raggedbottom
\setlength{\tabcolsep}{0in}
\newcommand{\isep}{-2 pt}
\newcommand{\lsep}{-0.6cm}
\newcommand{\psep}{-0.6cm}
\renewcommand{\labelitemii}{$\circ$}
\pagestyle{empty}
%-----------------------------------------------------------
%Custom commands
\newcommand{\resitem}[1]{\item #1 \vspace{-2pt}}
\newcommand{\resheading}[1]{{\small \colorbox{mygrey}{\begin{minipage}{0.965\textwidth}{\textbf{#1 \vphantom{p\^{E}}}}\end{minipage}}}}
\newcommand{\ressubheading}[3]{
\begin{tabular*}{6.62in}{l @{\extracolsep{\fill}} r}
\textsc{{\textbf{#1}}} & \textsc{\textit{[#2]}} \\
\end{tabular*}\vspace{-9pt}}
%-----------------------------------------------------------
\begin{document}
\hspace{0.75cm}\\[-0.54cm]
\textbf{<span id="userEnteredName">Name Here</span>} \\
\indent <span id="userEnteredYear">Given</span> \hfill
\href{mailto:<span id="userEnteredEmail">Link</span>}{<span id="userEnteredEmailText">Mail</span>}\\
\indent Discipline of <span id="userEnteredBranch">Branch</span> \hfill <span id="userEnteredContact">Contact</span> \\
\indent Indian Institute of Technology, Gandhinagar \hfill
\underline{\href{<span id="userEnteredLinkedIn">LinkedIn</span>}{LinkedIn}} |
\underline{\href{<span id="userEnteredGithub">Branch</span>}{Github}} | \underline{\href{<span id="userEnteredWebsite">Branch</span>}{Website}}
\\
\indent \resheading{\textbf{ACADEMIC DETAILS} }\\[\lsep]
\\ \\
%\begin{table}[ht!]
%\begin{center}
\indent \begin{tabular}{ p{1.7cm} @{\hskip 0.08in} p{5.254cm} @{\hskip 0.08in} p{7.054cm} @{\hskip 0.09in} p{2.554cm} @{\hskip 0.08in} p{1.72cm} }
\toprule
\textbf{Degree} & \textbf{Specialization} & \textbf{Institute} & \textbf{Year} & \textbf{CPI/\%} \\
\midrule
<span id="userphd"></span>
<span id="usermtech"></span>
B.Tech. & \textit{<span id="userEnteredBranch2">Branch</span>} & <span id="userEnteredIns">Branch</span> & <span id="userEnteredYOJ">YOJ</span> & <span id="userEnteredCPI">CPI</span> \\
Class XII & \textit{Physics, Chemistry, Maths} & <span id="userEnteredInstituteTwelve">Branch</span> & <span id="userEnteredYearTwelve">Branch</span> & <span id="userEnteredMarksTwelve">Branch</span>\\
Class X & & <span id="userEnteredInstituteTen">Branch</span> & <span id="userEnteredYearTen">Branch</span> & <span id="userEnteredMarksTen">Branch</span>\\
\bottomrule
\end{tabular}
<span id="userEnteredInternshipsLatex">
\resheading{\textbf{ INTERNSHIPS} }
\vspace{-0.4cm}
\begin{itemize}\itemsep\isep
<span id="userEnteredInternships">DELETE THIS</span>
\end{itemize}
</span>
\resheading{\textbf{ PROJECTS} }
\vspace{-0.4cm}
\begin{itemize}\itemsep\isep
<span id="userEnteredProjects">DELETE THIS</span>
\end{itemize}
\resheading{\textbf{TECHNICAL SKILLS} }
\vspace{-0.4cm}
\begin{itemize} \itemsep \isep
<span id="userEnteredSkills">DELETE THIS</span>
\end{itemize}
\resheading{\textbf{POSITIONS OF RESPONSIBILITY} }
\vspace{-0.4cm}
\begin{itemize} \itemsep \isep
<span id="userEnteredPORs">DELETE THIS</span>
\end{itemize}
\resheading{\textbf{ACHIEVEMENTS} }
\begin{itemize}\itemsep\isep
<span id="userEnteredAchievements">DELETE THIS</span>
\end{itemize}
\end{document}
</pre>
<!-- Latex code ends-->
<!-- Section: Footer -->
<footer class="footer">
<div class="container">
<!-- Footer content -->
<div class="footer-content">
<div class="footer-logo">
<h2>IIT Gandhinagar</h2>
</div>
<div class="footer-social">
<ul class="social-icons">
<li>
<!-- Email address with envelope icon -->
<i class="fas fa-envelope"></i> [email protected]
</li>
</ul>
</div>
</div>
<!-- Section: Follow Us on GitHub -->
<div class="footer-follow">
<p>GitHub</p>
<ul class="follow-icons">
<li>
<!-- Link to the GitHub repository -->
<a href="https://github.com/Kishan-Ved/resume_generator" target="_blank"><i
class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
<!-- Section: CopyRight and Info -->
<div class="footer-bottom">
<p>© 2024 Kishan-Ved. All Rights Reserved.</p>
<p>To report a bug or add a new feature, use the GitHub link above and make a PR.<br>
Made with ♥ by <u><a href="https://github.com/Kishan-Ved" style="color: white;"
target="_blank">Kishan Ved</a></u>.
</p>
</div>
</div>
</footer>
<!-- Footer Section Ends -->
<!-- Section: JS Tags -->
<!-- Enables advanced tooltips and popups -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<!-- Provides Bootstrap JS for UI components -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"></script>
<!-- Custom JavaScript for dynamic functionality -->
<script src="script.js"></script>
<!-- Module for advanced functionalities -->
<script type="module" src="groq-script.js"></script>
<!-- JS library for PDF generation -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<!-- Libraries to capture HTML content as PDF -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html2canvas.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.3/html2pdf.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
<!-- JS Tags Section Ends -->
</body>
</html>