-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
229 lines (166 loc) · 6.73 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
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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<link rel="icon" type="image/png" href="images\favicon.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- download button -->
<button class="buttonClass" id="download" onclick="PDF()" >Download</button>
<div class="container" id="resume">
<div class="row">
<!-- top left resume section begin -->
<div class="col-sm-5 r">
<!-- address section begin -->
<span id="add">
<span onmouseenter="show('addr')" onmouseleave="hide('addr')" id="addr">
<input type="text" class="col-sm-9" placeholder="Address" maxlength="18">
<button class="btn btn-success" onclick="add('address')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
<button class="btn btn-danger" onclick="del('addr')">
<span class="glyphicon glyphicon-trash"></span>
</button><br>
</span>
<span onmouseenter="show('addr1')" onmouseleave="hide('addr1')" id="addr1">
<input type="text" class="col-sm-9" placeholder="Address" maxlength="18">
<button class="btn btn-success" onclick="add('address')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button><button class="btn btn-danger" onclick="del('addr1')">
<span class="glyphicon glyphicon-trash"></span>
</button><br>
</span>
</span>
<!-- address section end -->
<!-- email section begin -->
<span id="em">
<span onmouseenter="show('email')" onmouseleave="hide('email')" id="email">
<input type="email" class="col-sm-9" placeholder="email" >
<button class="btn btn-success" onclick="add('email')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
<button class="btn btn-danger" onclick="del('email')">
<span class="glyphicon glyphicon-trash"></span>
</button><br>
</span>
</span>
<!-- email section end -->
<!-- phone number section begin -->
<span id="ph">
<span onmouseenter="show('phone')" onmouseleave="hide('phone')" id="phone">
<input type="tel" class="col-sm-9" placeholder="phone" maxlength="13">
<button class="btn btn-success" onclick="add('phone')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
<button class="btn btn-danger" onclick="del('phone')">
<span class="glyphicon glyphicon-trash"></span>
</button><br>
</span>
</span>
<!-- phone number section end -->
</div>
<!-- top left resume section end -->
<!-- top right resume section begin -->
<div class="col-sm-7">
<input type="text" id="name" placeholder="Name" maxlength="19"><br>
</div>
<!-- top right resume section end -->
</div>
<div class="row">
<div class="col-sm-12">
<!-- table begin -->
<table width="100%" id="table">
<!-- Row 1 begin -->
<tr id="tr1" onmouseenter="show('tr1')" onmouseleave="hide('tr1')" >
<!-- right section begin -->
<td class="col-sm-3">
<p class="heading1" contenteditable="true">WORK EXPERIENCE</p>
</td>
<!-- right section end -->
<!-- left section begin -->
<td contenteditable="true" id="td1" class="col-sm-8">
<p class="heading2"> Company Name
<button class="btn btn-success" contenteditable="false" onclick="addelement('1')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
</p>
<ul>
<li>Position</li>
<li>About</li>
</ul>
</td>
<td class="col-sm-1">
<button class="btn btn-success" onclick="add('tr')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
<button class="btn btn-danger" onclick="del('tr1')">
<span class="glyphicon glyphicon-trash"></span>
</button>
</td>
<!-- left section end -->
</tr>
<!-- Row 1 end -->
<!-- Row 2 begin -->
<tr id="tr2" onmouseenter="show('tr2')" onmouseleave="hide('tr2')">
<!-- right section begin -->
<td class="col-sm-3">
<p class="heading1" contenteditable="true">EDUCATION</p>
</td>
<!-- right section end -->
<!-- left section begin -->
<td class="col-sm-8"contenteditable="true" id="td2">
<p class="heading2">Collage Name
<button class="btn btn-success" contenteditable="false" onclick="addelement('2')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
</p>
<ul>
<li>Major</li>
<li>About</li>
</ul>
</td>
<td class="col-sm-1">
<button class="btn btn-success" onclick="add('tr')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
<button class="btn btn-danger" onclick="del('tr1')">
<span class="glyphicon glyphicon-trash"></span>
</button>
</td>
<!-- left section end -->
</tr>
<!-- Row 2 end -->
<!-- Row 3 begin -->
<tr>
<!-- right section begin -->
<td class="col-sm-3" onmouseenter="show('skills')" onmouseleave="hide('skills')">
<p class="heading1" >SKILLS</p>
<span id="skills">
<input type="text" id="sk" >
<button class="btn btn-primary" onclick="add('skill')">
<span class="glyphicon glyphicon-plus-sign"></span>
</button>
</span>
</td>
<!-- right section end -->
<!-- left section begin -->
<td class="col-sm-9" id="skill">
<span class="badge badge-primary m-5" id="s1" onmouseenter="show_d('s1')" onmouseleave="hide_d('s1')">Skill
<span class="glyphicon glyphicon-remove" onclick="del('s1')"></span>
</span>
</td>
<!-- left section begin -->
</tr>
<!-- Row 3 end -->
</table>
<!-- table end -->
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>