-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (134 loc) · 8.5 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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Resume Genius</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
<style>
/* Your existing styles */
/* Animate the navigation buttons */
.navbtn {
transition: transform 0.3s ease-in-out;
}
.navbtn:hover {
transform: scale(1.2);
}
/* Animate the main section */
#resume {
animation: fadeIn 1s ease-in-out;
}
/* Animate the footer */
footer {
text-align: center;
margin-top: 20px;
opacity: 0;
animation: fadeIn 1s ease-in-out 0.5s forwards;
}
/* Additional hover effect for the footer link */
footer a:hover {
color: #3498db;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Add more animations and styles as needed */
</style>
</head>
<body>
<div class="nav">
<button id="cmd" onclick="printpdf()" class="navbtn"><i class="fas fa-download"></i></button>
<form>
<input type="hidden" id="custinfo" name="custinfo">
<button class="navbtn"><i class="fas fa-save"></i></button>
</form>
<button class="navbtn" href=""><i class="fas fa-home"></i></button>
</div>
<div class="resume" id="resume">
<section id="print">
<div class="head">
<div class="main">
<span class="name" contenteditable="true">YOUR</span> <span contenteditable="true">NAME</span>
<div class="post" contenteditable="true">YOUR JOB PROFILE</div>
</div>
<div class="contacts">
<span contenteditable="true" class="content">231-3212-2132</span><span class="symbol"> <i class="fas fa-phone"></i></span><br>
<span contenteditable="true" class="content">[email protected]</span><span class="symbol"> <i class="fas fa-envelope"></i></span><br>
<span contenteditable="true" class="content">linkedin/username.com</span><span class="symbol"> <i class="fab fa-linkedin"></i></span><br>
<span contenteditable="true" class="content">sample street-India</span><span class="symbol"> <i class="fas fa-map-marker-alt"></i></i></span>
</div>
</div>
<div class="line"></div>
<div class="mainbody">
<div class="leftside">
<span class="title">MY SKILLS</span><br><br><div>
<div class="skill"><span><input type="checkbox" class="input-checkbox"></span><span><i class="fas fa-chevron-circle-right"></i></span> <span contenteditable="true">write your skill here</span></div>
<div id="skills"></div>
<button id="skilladd" type="button" class="btn btn-success" onclick="addskill()"><i class="fas fa-plus-circle"></i> Skill</button>
<button id="skillrem" type="button" class="btn btn-danger" onclick="remskill(event)"><i class="fas fa-minus-circle"></i> Skill</button></div>
<br><br><span class="title">LANGUAGES</span><br><br><div>
<div class="language"><span><input type="checkbox" class="input-checkbox"></span><span contenteditable="true">LANGNAME</span> - <span contenteditable="true">level u know</span></div>
<div id="languages"></div>
<button id="langadd" type="button" class="btn btn-success" onclick="addLang()"><i class="fas fa-plus-circle"></i> Language</button>
<button id="langrem" type="button" class="btn btn-danger" onclick="remLang(event)"><i class="fas fa-minus-circle"></i> Language</button></div>
<br><br><span class="title">ACHIEVEMENTS</span><br><br><div>
<div class="achieve" ><span><input type="checkbox" class="input-checkbox"></span><span contenteditable="true">Write your achievement</span></div>
<div id="achievement"></div>
<button id="achadd" type="button" class="btn btn-success" onclick="addAch()"><i class="fas fa-plus-circle"></i> Achievement</button>
<button id="achrem" type="button" class="btn btn-danger" onclick="remAch(event)" style="margin-top: 0;"><i class="fas fa-minus-circle"></i> Achievement</button></div>
<br><br><span class="title">INTERESTS</span><br><br><div>
<div class="achieve" ><span><input type="checkbox" class="input-checkbox"></span><span contenteditable="true">Write interest</span></div>
<div id="interest"></div>
<button id="Intadd" type="button" class="btn btn-success" onclick="addInt()"><i class="fas fa-plus-circle"></i> Interest</button>
<button id="Intrem" type="button" class="btn btn-danger" onclick="remInt(event)"><i class="fas fa-minus-circle"></i> Interest</button></div>
</div>
<div class="border"></div>
<div class="rightside">
<span class="title">PROFILE</span><br><br>
<div contenteditable="true">
Here you can write the basic information about your career like your forte, something about yourself that
you want your interviewer to know. Try to keep it brief and only provide necessary information. Do not include information which is
already written in your resume in some other section.</div>
<br><br><span class="title">EDUCATION</span><br><br><div>
<div id="education">
<div class="edublock">
<span><input type="checkbox" class="input-checkbox"></span>
<span class="education-head" contenteditable="true">YOUR DEGREE</span>
<div ><span contenteditable="true">Institute name</span> - <span contenteditable="true">Passing Year</span></div>
</div>
</div>
<button id="eduadd" type="button" class="btn btn-success" onclick="addedu()"><i class="fas fa-plus-circle"></i> Education</button>
<button id="edurem" type="button" class="btn btn-danger" onclick="remedu(event)"><i class="fas fa-minus-circle"></i> Education</button></div>
<br><br>
<div class="new-section-div"><div><span><input type="checkbox" class="input-checkbox"></span><span class="title" contenteditable="true">NEW SECTION</span><br><br>
<div contenteditable="true">
This is the description part of your new section. Try to stay within limit and write something which has less
than 400 characters. The spaces and symbols you use will also be included so use them for an indentation effect.</div>
</div>
<div id="newsec"></div>
<button id="secadd" type="button" class="btn btn-success" onclick="addsec()"><i class="fas fa-plus-circle"></i> Section</button>
<button id="secrem" type="button" class="btn btn-danger" onclick="remsec(event)"><i class="fas fa-minus-circle"></i> Section</button>
</div>
</div>
</section>
</div>
<footer>
<p>Created by Mohammad Wasim Tikki - <a href="https://github.com/wasimtikki120" target="_blank">GitHub</a></p>
</footer>
<!-- Your existing script imports -->
<!-- ... (your existing HTML code) ... -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.8.0/html2pdf.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>