-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
38 lines (34 loc) · 941 Bytes
/
cv.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="styles_header.css">
<link rel="stylesheet" href="styles_root.css">
<link rel="stylesheet" href="styles_cv.css">
<title>Giuliano Giari - Portfolio</title>
</head>
<body>
<header>
<h1>Giuliano Giari</h1>
<nav>
<ul>
<a href="index.html">Home</a>
<a href="cv.html">CV</a>
<a href="publications.html">Publications</a>
<a href="contacts.html">Contacts</a>
<ul>
</nav>
</header>
<section id="cv">
<div class="cv">
<embed src="./documents/CV_Giuliano_Giari.pdf" type="application/pdf" width="100%" height="500px" />
</div>
</section>
<footer>
<p>© 2023 Giuliano Giari</p>
</footer>
<script src="script.js"></script>
</body>
</html>