-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (74 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>Dynamic Resume Builder</h1>
</div>
<div id="container">
<div id="box">
<h1>Fill In Your Information</h1>
<form action="" id="resume-form">
<label for="name">Name:-</label>
<input type="text" id="name" placeholder="Your-Name" required>
<label for="file">Image:-</label>
<input type="file" src="" alt="image" id="file" name="file" required>
<label for="email">Email:-</label>
<input type="email" name="email" id="email" placeholder="abc@gmail.com" required>
<label for="phone-number">Phone-Number:-</label>
<input type="number" name="phone-number" id="phone-number" placeholder="+123456789" required>
<label for="location">Location:-</label>
<input type="text" name="location" id="location" required>
<label for="job-type">Job-Type:-</label>
<input type="text" name="job-type" id="job-type" required>
<label for="comapny">Comapny:-</label>
<input type="text" name="comapny" id="comapny" required>
<label for="job-date">Job-Date:-</label>
<input type="date" name="job-date" id="job-date" required>
<label for="degree">Degree:-</label>
<input type="text" name="degree" id="degree" required>
<label for="insitution">Insitution:-</label>
<input type="text" name="insitution" id="insitution" required>
<div class="submit-resume">
<!-- <input type="submit" value="Generate Resume"> -->
<button type="submit" id="button">Generate Resume</button>
</div>
</form>
</div>
</div>
<section id="output-resume">
<div id="resume-box">
<div id="resume">
</div>
</div>
</section>
<div id="buttons">
<button class="download-button" id="download-pdf-button" type="button">Download Form</button>
<button class="animated-button">
<svg viewBox="0 0 24 24" class="arr-2" xmlns="http://www.w3.org/2000/svg">
<path
d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z">
</path>
</svg>
<span class="text">Generate URL</span>
<span class="circle"></span>
<svg viewBox="0 0 24 24" class="arr-1" xmlns="http://www.w3.org/2000/svg">
<path
d="M16.1716 10.9999L10.8076 5.63589L12.2218 4.22168L20 11.9999L12.2218 19.778L10.8076 18.3638L16.1716 12.9999H4V10.9999H16.1716Z">
</path>
</svg>
</button>
<button id="edit-resume-button" class="edit-button" type="button">Edit Resume</button>
</div>
<div id="footer">
<h2>Developed By Fahad Developer</h2>
</div>
<script src="index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
</body>
</html>