-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (74 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dario Cupolillo | Postdoc</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#home"><i class="fa-solid fa-house"></i></a></li>
<li><a href="#about"><i class="fa-solid fa-user"></i></a></li>
<li><a href="#projects"><i class="fas fa-project-diagram"></i></a></li>
<li><a href="#skills"><i class="fa-solid fa-hammer"></i></a></li>
</ul>
</nav>
<div id="home" class="central-block">
<div class="name">Dario Cupolillo</div>
<div class="position">Postdoc</div>
<div class="icons">
<a
href="mailto:[email protected]"
target="_blank"
title="Gmail"
>
<div class="icon gmail-icon"></div>
</a>
<a href="https://github.com/dcupolillo" target="_blank" title="GitHub">
<div class="icon github-icon"></div>
</a>
<a
href="https://orcid.org/0000-0002-1517-3815"
target="_blank"
title="ORCID"
>
<div class="icon orcid-icon"></div>
</a>
<a
href="https://www.linkedin.com/in/dariocupolillo"
target="_blank"
title="LinkedIn"
>
<div class="icon linkedin-icon"></div>
</a>
</div>
<div class="hero-cta">
<a href="#about" class="cta-button">Know More</a>
</div>
</div>
<section id="about">
<h1>About Me</h1>
<div class="about-me-content">
<img src="path/to/your-picture.jpg" class="about-me-picture">
<div class="about-me-text">
<p>Short text about yourself goes here. </p>
</div>
</div>
</section>
<section id="projects">
<h1>My projects</h1>
<div class="about-me-content">
</div>
</section>
</body>
</html>