-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
63 lines (41 loc) · 1.56 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Natasha Wilson</title>
<link rel="stylesheet" href="styling.css">
<link rel="stylesheet" href="menu.css">
<link rel="stylesheet" href="contact.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&family=PT+Sans&display=swap"
rel="stylesheet">
</head>
<body>
<div class="titlecontainer">
<h2 class="title"> NATASHA WILSON </h2>
<div class="menu-wrap">
<input type="checkbox" class="toggler">
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<div>
<div>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="work-experience.html">WORK EXPERIENCE</a></li>
<li><a href="education.html">EDUCATION</a></li>
<li><a href="achievements.html">ACHIEVEMENTS & SKILLS</a></li>
<li><a href="personalinterests.html">PERSONAL INTERESTS</a></li>
<li><a href="contact.html">CV PRINT OUT</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="print">
<img class="cv" src="CVCV.jpg" alt="my CV">
<button class="button" onclick="window.print()">Print this page</button>
</div>
<footer> Copyright © 2020 Natasha Wilson </footer>
</body>
</html>