-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 2.21 KB
/
index.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
64
<!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_home.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" class="current">Home</a>
<a href="cv.html">CV</a>
<a href="publications.html">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="profile">
<section class="profile-image">
<img src="./pictures/profile.jpg" alt="Avatar" class="avatar">
</section>
<section class="profile-links">
<a href="https://scholar.google.com/citations?user=6VCKLy4AAAAJ&hl=en">
<img src="https://www.iconarchive.com/download/i147248/academicons-team/academicons/google-scholar-square.48.png"
alt="GoogleScholar"></a>
<a href="https://www.researchgate.net/profile/Giuliano-Giari-2">
<img src="https://www.iconarchive.com/download/i147248/academicons-team/academicons/researchgate-square.48.png"
alt="ResearchGate"></a>
<a href="https://osf.io/akcg8">
<img src="https://www.iconarchive.com/download/i147248/academicons-team/academicons/osf-square.48.png"
alt="OSF"></a>
<a href="https://orcid.org/0000-0002-1693-0160">
<img src="https://www.iconarchive.com/download/i147248/academicons-team/academicons/orcid-square.48.png"
alt="Orcid"></a>
</section>
</div>
<div class="about">
<div class="text">
<h2>About me</h2>
<p>I am a PhD Student in Cognitive Neuroscience
at the Center for Mind/Brain Sciences (CIMeC) of the University of Trento
(Italy).</p>
</div>
<footer>
<p>© 2023 Giuliano Giari</p>
</footer>
<script src="script.js"></script>
</body>
</html>