-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
40 lines (36 loc) · 1.23 KB
/
contacts.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
<!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">
<title>Giuliano Giari - Portfolio</title>
</head>
<body>
<header>
<h1>Giuliano Giari</h1>
<nav>
<ul>
<a href="index.html">Home</a>
<a href="./documents/CV_Giuliano_Giari.pdf">CV</a>
<a href="publications.html">Publications</a>
<a href="contacts.html" class="current">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>
<!-- add a section with contact information such as email as clickable link -->
<section class="contact">
<h2>Contact me</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</section>
<footer>
<p>© 2023 Giuliano Giari</p>
</footer>
<script src="script.js"></script>
</body>
</html>