Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishan-Ved committed Dec 28, 2023
1 parent 0e2dcd7 commit c98162a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
<div class="container-fluid">
<div class="row">
<div class="col-md-6" id="content">
<h1>Professional Resumes in perfect LaTeX</h1><br>
<h2>No code required.</h2><br><br>
<h2>Steps to Generate Your Resume:</h2>
<ul>
<li>Step 1: Click the button below.</li>
Expand Down
18 changes: 13 additions & 5 deletions resumegenerator.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ <h3>Academic Details</h3>

<div id="interns-container">
<h3>Internships</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="interns">
<input type="text" placeholder="Intern Title and company name" class="form-control internships my-2"
id="internTitleF">
Expand All @@ -108,9 +109,11 @@ <h3>Internships</h3>
</div>
</div>
<button onclick="addNewIntern()" class="btn btn-dark btn-lg" id="internaddbutton">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>

<div id="projects-container">
<h3>Projects</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="projects">
<input type="text" placeholder="Project Title" class="form-control my-2"
id="projectTitleF">
Expand All @@ -127,8 +130,10 @@ <h3>Projects</h3>
</div>
</div>
<button onclick="addNewProject()" class="btn btn-dark btn-lg" id="internaddbutton">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>

<h3>Skills</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<div class="form-group" id="skills">

<input type="text" placeholder="Name your skill Ex: Technical, Finance" class="form-control my-2"
Expand All @@ -137,8 +142,10 @@ <h3>Skills</h3>
class="form-control my-2" rows="1" id="skilldescriptionF"></textarea>
</div>
<button onclick="addNewSkill()" class="btn btn-dark btn-lg">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>

<h3>Position of Responsibility</h3>
<div>(If you dont want to include this, leave it blank and delete this section from the LaTeX code generated.)</div>
<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"
Expand All @@ -149,6 +156,7 @@ <h3>Position of Responsibility</h3>
id="PORdurationF">
</div>
<button onclick="addNewPOR()" class="btn btn-dark btn-lg">Add This</button>
<div>You must click the button to add this to LaTeX code.</div><br>


<!-- <div class="form-group">
Expand Down Expand Up @@ -179,7 +187,7 @@ <h3>Position of Responsibility</h3>
<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">Only a preview. Differs from the LaTeX output. <br> Check the LaTeX code for a clean and professional resume.</h5>
<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">
Expand Down Expand Up @@ -519,25 +527,25 @@ <h5 class="text-center my-2">Only a preview. Differs from the LaTeX output. <br>
\resheading{\textbf{ INTERNSHIPS} }
\vspace{-0.4cm}
\begin{itemize}\itemsep\isep
<span id="userEnteredInternships">Branch</span>
<span id="userEnteredInternships">DELETE THIS</span>
\end{itemize}

\resheading{\textbf{ PROJECTS} }
\vspace{-0.4cm}
\begin{itemize}\itemsep\isep
<span id="userEnteredProjects">Branch</span>
<span id="userEnteredProjects">DELETE THIS</span>
\end{itemize}

\resheading{\textbf{TECHNICAL SKILLS} }
\vspace{-0.4cm}
\begin{itemize} \itemsep \isep
<span id="userEnteredSkills">Branch</span>
<span id="userEnteredSkills">DELETE THIS</span>
\end{itemize}

\resheading{\textbf{POSITIONS OF RESPONSIBILITY} }
\vspace{-0.4cm}
\begin{itemize} \itemsep \isep
<span id="userEnteredPORs">Branch</span>
<span id="userEnteredPORs">DELETE THIS</span>
\end{itemize}

\end{document}
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
margin-left: 0px;
}
.cv-template {
font-family: 'Times New Roman', Times, serif;
font-family: 'Times New Roman', 'Times', 'serif';
}

body{
Expand Down

0 comments on commit c98162a

Please sign in to comment.