forked from GarimaSingh0109/Resum-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
283 lines (252 loc) · 10.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Builder - Step 1</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="Resume.css">
</head>
<body>
<!-- header section starts -->
<header>
<a href="#" class="logo">Resum Resume<span>.</span></a>
<nav class="navbar">
<a href="#home">Home</a>
<a href="about.html">About</a>
<a href="resume.html">Build Resume</a>
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</nav>
<div class="icons">
<a href="about.html" class="fas fa-info-circle"></a>
<a href="#" class="fas fa-envelope"></a>
<a href="login.html" id="loginIcon" class="fas fa-user"></a>
</div>
</header>
<style>
body{
padding: 0;
}
header{
position: relative;
margin-bottom: 5rem;
}
footer{
margin-top: 5rem;
}
</style>
<!-- header section ends -->
<!-- progress bar section -->
<div class="progressSec">
<div class="progress-bar">
<div class="step step1p active">
<span class="circle">1</span>
<span class="label">Step 1</span>
</div>
<div class="line line1"></div>
<div class="step step2p">
<span class="circle">2</span>
<span class="label">Step 2</span>
</div>
<div class="line line2"></div>
<div class="step step3p">
<span class="circle">3</span>
<span class="label">Step 3</span>
</div>
</div>
</div>
<!-- main section start -->
<div class="form-container">
<h2>Fill Your Information</h2>
<!-- Personal Information -->
<div class="section" id="personal-info">
<h3>Personal Information</h3>
<div class="pInfo">
<div class="pInfoLeft">
<label>Name:</label>
<input type="text" id="name" placeholder="Enter your name">
<label>Email:</label>
<input type="email" id="email" placeholder="Enter your email">
<label>Contact Number:</label>
<input type="tel" id="contact" placeholder="Enter your contact number">
<label>Location:</label>
<input type="text" id="location" placeholder="Enter your location">
</div>
<div class="pInfoRight">
<label>Profile:</label>
<textarea id="profile" placeholder="Write about yourself"></textarea>
</div>
</div>
</div>
<!-- Education -->
<div class="section" id="education">
<h3>Education</h3>
<div id="education-fields">
<div class="education-entry">
<label>Institute:</label>
<input type="text" placeholder="Enter institute name">
<label>Course:</label>
<input type="text" placeholder="Enter course name">
<label>Start Year:</label>
<input type="text" placeholder="Start Year">
<label>End Year:</label>
<input type="text" placeholder="End Year">
<label>Score/Grade:</label>
<input type="text" placeholder="Score/Grade">
</div>
</div>
<button type="button" id="add-education">Add Another Education</button>
</div>
<!-- Skills -->
<div class="section" id="skills">
<h3>Skills</h3>
<label>Skills (Comma Separated) :</label>
<input type="text" id="skills-input" placeholder="e.g., C, C++, Python">
</div>
<!-- Experience -->
<div class="section" id="experience">
<h3>Experience</h3>
<div id="experience-fields">
<div class="experience-entry">
<div class="expLeft">
<label>Job Position:</label>
<input type="text" placeholder="Enter job position">
<label>Company Name:</label>
<input type="text" placeholder="Enter company name">
<label>Start Year:</label>
<input type="text" placeholder="Start Year">
<label>End Year:</label>
<input type="text" placeholder="End Year">
</div>
<div class="expRight">
<label>Description:</label>
<textarea id="expdes" placeholder="Describe your job experience"></textarea>
</div>
</div>
</div>
<button type="button" id="add-experience">Add Another Job</button>
</div>
<!-- Achievements and Certifications -->
<div class="section" id="achievements">
<h3>Achievements and Certifications</h3>
<div class="achive">
<div class="achiveLeft">
<label>Heading:</label>
<input type="text" placeholder="e.g., 'Best Employee of the Year'">
</div>
<div class="achiveRight">
<label>Description:</label>
<textarea placeholder="Describe your achievement or certification"></textarea>
</div>
</div>
</div>
<!-- Projects (Optional) -->
<div class="section" id="projects">
<h3>Projects (Optional)</h3>
<div id="project-fields">
<div class="project-entry">
<div class="projectLeft">
<label>Project Title:</label>
<input type="text" placeholder="Enter project title">
<label>Role/Responsibilities:</label>
<textarea placeholder="Describe your role"></textarea>
<label>Link (Optional):</label>
<input type="url" placeholder="Enter project link">
</div>
<div class="projectRight">
<label>Description:</label>
<textarea id="projectdesc" placeholder="Describe the project"></textarea>
</div>
</div>
</div>
<button type="button" id="add-project">Add Another Project</button>
</div>
<!-- Languages (Optional) -->
<div class="section" id="languages">
<h3>Languages (Optional)</h3>
<label>Languages (Comma Separated):</label>
<input type="text" id="languages-input" placeholder="e.g., English, Hindi, French">
</div>
<!-- Buttons -->
<div class="buttons step1btns">
<button type="button" id="next-step" onclick="proceedToNextStep(2)">Next Step</button>
</div>
</div>
<!-- Step 2: Template Selection Section -->
<div id="step-2" class="step-section" style="display: none;">
<h2>Select a Resume Template</h2>
<div class="template-section">
<div id="basic" class="template-card" onclick="selectTemplate('basic')">
<img src="templates/basic.jpg" alt="Basic Template">
<p>Basic</p>
</div>
<div id="classic" class="template-card" onclick="selectTemplate('classic')">
<img src="templates/classic.jpg" alt="Classic Template">
<p>Classic</p>
</div>
<div id="modern" class="template-card" onclick="selectTemplate('modern')">
<img src="templates/modern.jpg" alt="Modern Template">
<p>Modern</p>
</div>
</div>
<!-- Navigation Buttons -->
<div class="buttons">
<button id="prev-step-2" onclick="showStep(1)">Prev Step</button>
<button id="next-step-2" onclick="proceedToNextStep(3)">Next Step</button>
</div>
</div>
<!-- Step 3: Review and Finalize Resume -->
<div class="step-section" id="step-3" style="display: none;">
<h2>Review Your Resume</h2>
<div id="resume-display">
<!-- Generated resume will be displayed here -->
</div>
<button id="prev-step-3">Edit Previous Steps</button>
<button id="download-resume">Download Resume</button>
</div>
<!-- footer section start -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<ul>
<li><a href="#">Our Story</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Services</h3>
<ul>
<li><a href="#">Resume Builder</a></li>
<li><a href="cv.html">CV Templates</a></li>
<li><a href="#">Career Advice</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Support</h3>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Resume Builder. All rights reserved.</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.3/html2pdf.bundle.min.js"></script>
<script src="Resume.js"></script>
</body>
</html>