-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 1.47 KB
/
index.html
File metadata and controls
50 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>CV Generator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="line-container">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="overlay">
<!-- config -->
<div class="config-panel">
<label for="name">Navn</label>
<input type="text" id="name" placeholder="Olav Norman" />
<label for="email">Email</label>
<input type="text" id="email" placeholder="olavnorman@gmail.com" />
<label for="phone">Telefon</label>
<input type="text" id="phone" placeholder="+47 123 45 678" />
<!-- om meg -->
<div id="about-me-section">
<h3>Om meg</h3>
<textarea id="about-me-text" placeholder="Skriv litt om deg selv"></textarea>
</div>
<!-- utdanning -->
<div id="education-section">
<h3>Navn på utdanning</h3>
<div id="education-list"></div>
<button id="add-education">Add Education</button>
</div>
</div>
<!-- preview -->
<div class="a4-preview">
<iframe src="cv.html" class="cv-iframe"></iframe>
</div>
</div>
<script src="script.js"></script>
</body>
</html>