-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex2.html
More file actions
260 lines (196 loc) · 8.91 KB
/
index2.html
File metadata and controls
260 lines (196 loc) · 8.91 KB
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
<!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-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" />
<title>Resume Creator</title>
</head>
<body>
<div class="container" id="cv-form">
<h1 class="text-center my-3 heading2">RESUME CREATOR</h1>
<div class="row">
<div class="col-md-6">
<h3 class="heading1">DETAILS</h3>
<span class="form-group">
<label for="namefield">Full Name</label>
<input type="text" id="namefield" placeholder="Enter First Name" class="form-control" />
</span>
<div class="form-group">
<label for="contactfield">Contact Number</label>
<input type="text" id="contactfield" placeholder="Enter Contact" class="form-control" />
<label for="mailfield">Email Address</label>
</div>
<div class="form-group mt-2">
<label for="addressfield">Address</label>
<textarea type="text" id="addressfield" placeholder="Address" class="form-control" rows="2"></textarea>
</div>
<div class="form-group mt-2">
<label for="">Select Your Profile Picture</label>
<input id="imgfield" type="file" class="form-control"/>
</div>
<p class="text-secondary my-3">Important Links</p>
<div class="form-group mt-5">
<label for="fbfield">Facebook Link</label>
<input type="text" id="fbfield" placeholder="Enter Here" class="form-control"/>
</div>
<div class="form-group mt-5">
<label for="instafield">Instagram</label>
<input type="text" id="instafield" placeholder="Enter Here" class="form-control"/>
</div>
<div class="form-group mt-5">
<label for="linkedinfield">LinkedIn ID Link</label>
<input type="text" id="linkedinfield" placeholder="Enter Here" class="form-control"/>
</div>
</div>
<div class="col-md-6">
<div class="form-group mt-5">
<label for="">Objective</label>
<textarea id="objectivefield" placeholder="Enter Here" class="form-control wefield" rows="2"></textarea>
</div>
<div class="form-group mt-2" id="we">
<label for="">Experience</label>
<input type="text" placeholder="Enter Here" class="form-control weField">
<div class="container text-center mt-2" id="weAddButton">
<button onclick="AddNewWEField()" class="btn btn-primary btn-danger add1">Add</button>
</div>
</div>
<div class="form-group" id="eq">
<label for="">Acadmic Qualification</label>
<input type="text" placeholder="Enter Here" class="form-control eqField">
<div class="container text-center mt-2" id="aqAddButton">
<button onclick="AddNewAQField()" class="btn btn-primary btn-warning add2">Add</button>
</div>
</div>
<div class="form-group" id="lng">
<label for="">Language</label>
<input type="text" placeholder="Enter Here" class="form-control langfield">
<div class="container text-center mt-2" id="Lang">
<button onclick="Language()" class="btn btn-primary btn-info add3">Add</button>
</div>
</div>
</div>
</div>
<div class="container text-center mt-3">
<button onclick="generateCV()" class="btn btn-primary btn-success py-3 gdp">Generate Resume</button>
</div>
</div>
<div class="container" id="CV-template">
<div class="row">
<div class="col-md-4 background">
<div class="text-center background">
<!--1st coloum-->
<img src="https://i.pinimg.com/736x/a8/57/00/a85700f3c614f6313750b9d8196c08f5.jpg" id="imgTemplate" class="img-fluid myimg" />
<div class="container">
<p id="nameT1">Full Name</p>
<hr/>
</div>
</div>
<div class="col-md-5 text-center background">
<h3>Contact</h3>
<p id="contactT">Phone</p>
<h3>Email</h3>
<p id="mailT">Email</p>
<h3>Address</h3>
<p id="addressT">Address</p>
<div class="text-center">
<p>
<a id="fbT" href="" target="_blank">https://www.facebook.com</a>
</p>
<p>
<a id="instaT" href="#1" target="_blank">https://www.instagram.com</a>
</p>
<p>
<a id="LinkedT" href="#1" target="_blank">https://www.LinkedIn.com</a>
</p>
</div>
</div>
</div>
<div class="col-md-8 py-1">
<!--2nd coloum-->
<h1 id="nameT2" class="text-center" style="font-weight: 980">NAME</h1>
<div class="card mt-4">
<div class="card-header background">
<h3>Objective</h3>
</div>
<div class="card-body">
<p id="objectiveT">Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, sit inventore? Minima saepe debitis voluptatibus dolorum quae, modi ex quas necessitatibus soluta voluptas porro corrupti at dolorem, laudantium pariatur accusamus.</p>
</div>
</div>
<div class="card mt-4">
<div class="card-header background">
<h3>Skills</h3>
</div>
<div class="card-body">
<ul id="weT">
<li>
Experience 1
</li>
<li>
Experience 2
</li>
<li>
Experience 3
</li>
<li>
Experience 4
</li>
</ul>
</div>
</div>
<div class="card mt-4">
<div class="card-header background">
<h3>Acadmic Qualification</h3>
</div>
<div class="card-body">
<ul id="aqT">
<li>
Acadmic 1
</li>
<li>
Acadmic 2
</li>
<li>
Acadmic 3
</li>
<li>
Acadmic 4
</li>
</ul>
</div>
</div>
<div class="card mt-4">
<div class="card-header background">
<h3>Language</h3>
</div>
<div class="card-body1">
<ul id="lgT">
<li>
Language 1
</li>
<li>
Language 2
</li>
<li>
Language 3
</li>
<li>
Language 4
</li>
</ul>
</div>
</div>
<div class="container mt-3 text-center py-3">
<button onclick="printCV()" id="hide" class="btn btn-primary background">Print Resume</button>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="JavaScript.js"></script>
</body>
</html>