-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (58 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Alessandro Vannini</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Antic+Slab&family=Aref+Ruqaa&family=Athiti:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="theme.css" />
<link rel="stylesheet" href="fonts.css" />
<link rel="stylesheet" href="menu.css" />
<link rel="stylesheet" href="home.css" />
</head>
<body>
<div class="menu-toggle-icon-container hide-on-big-screen">
<div id="menu-icon"></div>
</div>
<nav class="nav-menu hide-on-small-screen">
<div class="item selected">
<a>About Me</a>
</div>
<div class="item">
<a>Experience</a>
</div>
<div class="item">
<a>Projects</a>
</div>
</nav>
<div class="page">
<div class="hero">
<p class="title">Hi, I'm</p>
<p class="fancy"> Alessandro</p>
<p class="title">Full-Stack Software Developer</p>
</div>
<div class="description">
<p>
I am highly motivated, passionate about mathematics,
software development, music, and nature.
</p>
<p>
While I found my home in front-end development,
I am able to work across the stack to fit the needs of any team.
</p>
</div>
<div class="socials">
<a href="https://github.com/alevann" target="_blank" id="git-hub"></a>
<a href="https://stackoverflow.com/users/13183072/kil" target="_blank" id="stack-overflow"></a>
<a href="https://www.linkedin.com/in/alessandro-vannini-a56a6418a/" target="_blank" id="linked-in"></a>
</div>
<picture>
<source media="(max-width: 560px)" srcset="/assets/tree-home-mobile.png">
<source media="(min-width: 561px)" srcset="/assets/tree-home.png">
<img id="tree-bg" src="/assets/tree-home.png" alt="" />
</picture>
</div>
</body>
</html>