-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
192 lines (148 loc) · 6.22 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
<!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 Builder</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="header">
<div class="text-box">
<h1>Build a resume that will get you hired</h1>
<p>Make your perfect resume in minutes with free templates, samples and examples.</p>
</div>
</section>
<section class="main-content">
<div id="basic-info" style="display: none;">
<h2>Basic Info</h2>
<div>
<input type="text" name="Full name" placeholder="Full Name">
</div>
<div>
<input type="text" name="Mobile Number" placeholder="Mobile Number">
</div>
<div>
<input type="text" name="DOB" placeholder="DOB">
</div>
<div>
<input type="text" name="Title" placeholder="Title">
</div>
<div>
<input type="email" name="Email" placeholder="Email">
</div>
<div>
<textarea placeholder="address" name="address" id="address" cols="40" rows="10"></textarea>
</div>
<button>save</button>
</div>
<div id="education" style="display: none;">
<h2>Education</h2>
<div>
<input type="text" name="institute name" placeholder="Institute name">
</div>
<div>
<input type="text" name="STATE" id="" placeholder="STATE">
</div>
<div>
<input type="text" name="DEGREE" id="" placeholder="DEGREE">
</div>
<div>
<input type="text" name="FIELD OF STUDY" id="" placeholder="FIELD OF STUDY">
</div>
<div>
<input type="date" name="START DATE" id="" placeholder="START DATE">
</div>
<div>
<input type="number" name="PERCENTAGE/CGPA" id="" placeholder="PERCENTAGE/CGPA">
</div>
<button>save</button>
</div>
<div id="work-experience" style="display: none;">
<h2>Work Experience</h2>
<div>
<input type="text" name="EMPLOYER" placeholder="EMPLOYER" >
</div>
<div>
<input type="text" name="JOB TITLE" id="" placeholder="JOB TITLE">
</div>
<div>
<input type="date" name="START DATE" id="" placeholder="START DATE">
</div>
<div>
<input type="TEXT" name="STATE" id="" placeholder="STATE">
</div>
<div>
<textarea name="DISCRIPTION" id="" cols="30" rows="5" placeholder="DISCRIPTION"></textarea>
</div>
<button>save</button>
</div>
<div id="skills" style="display: none;">
<div id="skill-center">
<label for="">SKILLS</label>
<input type="text" name="skill" placeholder="Enter a skill">
<button id="add" onclick="addSkill()">Add Skill</button>
</div>
<ul id="skill-list"></ul>
<div>
<button id="add1">save</button>
</div>
</div>
<div id="achievements" style="display: none;">
<h2>Achievements</h2>
<h3>Enter a brief introduction about your achievements.</h3>
<div>
<textarea placeholder="Achievements" name="Achievements" id="" cols="30" rows="10"></textarea>
</div>
<button>save</button>
</div>
<div id="projects" style="display: none;">
<h2>Projects</h2>
<h3>Highlight some of your major Projects. (Maximum 3)</h3>
<div>
<input type="text" name="Project Title" id="" placeholder="PROJECT TITLE">
</div>
<div>
<input type="text" name="Project URL" id="" placeholder="PROJECT URL">
</div>
<div>
<textarea name="Project Description" id="" cols="30" rows="10" placeholder="Project Description"></textarea>
</div>
<div>
<button>save</button>
</div>
</div>
<div id="social-links" style="display: none;">
<h2>Social Links</h2>
<div>
<input type="text" name="Github" id="" placeholder="Github">
</div>
<div>
<input type="text" name="LinkedIn" id="" placeholder="LinkedIn">
</div>
<div>
<button id="socialbutton">save</button>
</div>
<div>
<button id="downloadButton">Download Resume</button>
</div>
</div>
<div id="download" >
</div>
</section>
<section class="side-bar">
<h1>Make your resume</h1>
<ul>
<li><a href="#basic-info" onclick="displayContent('basic-info')">Basic info</a></li>
<li><a href="#education" onclick="displayContent('education')">education</a></li>
<li><a href="#work-experience" onclick="displayContent('work-experience')">Work Experience</a></li>
<li><a href="#skills" onclick="displayContent('skills')">Skills</a></li>
<li><a href="#achievements" onclick="displayContent('achievements')">Achievements</a></li>
<li><a href="#projects" onclick="displayContent('projects')">Projects</a></li>
<li><a href="#social-links" onclick="displayContent('social-links')">Social Links</a></li>
</ul>
</section>
<script src="app.js"></script>
</body>
</html>