-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications.html
45 lines (39 loc) · 1.16 KB
/
publications.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
<!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_publications.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" class="current">Publications</a>
<a href="contacts.html">Contacts</a>
<ul>
</nav>
<button class="toggle-dark-mode">
<img src="https://creazilla-store.fra1.digitaloceanspaces.com/icons/3232195/dark-mode-icon-md.png" alt="Toggle dark mode">
</button>
</header>
<div class="timeline">
<!-- Events will be added here by JavaScript -->
</div>
<div class="sidebar">
<!-- Links will be added here by JavaScript -->
</div>
<footer>
<p>© 2023 Giuliano Giari</p>
</footer>
<script src="script.js"></script>
<script src="timeline.js"></script>
</body>
</html>