-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.93 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
<!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 rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<title>Resume-Generator</title>
</head>
<body>
<form class="input-fields" name="f1">
<h1 style="text-align: center; background-color: rgb(177, 228, 240);">Resume Generator</h1>
<input type="text" name="name" placeholder="Name" />
<input type="text" name="title" placeholder="Title eg Web-Developer" />
<input type="text" name="github" placeholder="Enter Github Account"/>
<input type="text" name="linkedin" placeholder="Enter your LinkedIn Account"/>
<input type="email" name="email" placeholder="Enter your Email"/>
<textarea name="workexp" placeholder="Work-Experience"></textarea>
<textarea name="academics" placeholder="Academic-Details"></textarea>
<textarea name="objective" placeholder="Objective" ></textarea>
<textarea name="skills" placeholder="Skills" ></textarea>
<textarea name="projects" placeholder="Projects" ></textarea>
<textarea name="achievements" placeholder="Achievements" ></textarea>
<input name="contact" type="number" placeholder="Contact" >
</form>
<!-- resume preview -->
<div class="output">
</div>
<!-- button for toggle -->
<div class="btn">
<button onclick="toggle()">Preview or edit</button>
</div>
<script src="https://cdn.ckeditor.com/ckeditor5/27.1.0/classic/ckeditor.js"></script>
<script src="./app.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</body>
</html>