-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcontact.html
53 lines (48 loc) · 2.44 KB
/
contact.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
<!DOCTYPE html>
<html lang="it" dir="ltr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tommaso Battisti - Contact</title>
<meta name="description" content="Sezione contatti di Tommaso Battisti">
<meta name="author" content="Tommaso Battisti">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9T1GT9RXZY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9T1GT9RXZY');
</script>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Font -->
<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=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body class="container-fluid">
<header class="contactheader">
<nav class="containerlinkbox">
<div class="linkbox">
<a class="title" href="index.html"> HOME </a>
<a class="title" href="projects.html"> PROGETTI </a>
<div class="spacer"></div>
<a class="title" href="about.html"> ABOUT </a>
<a class="title active" href="contact.html">CONTATTI</a>
</div>
</nav>
<div class="h1container">
<h1 class="contacth1"><a href="mailto:[email protected]" class="maillink">Clicca qui</a></br>per contattarmi!</h1>
</div>
<div class="coversocial contactcoversocial">
<a target="_blank" class="coverinstagram" href="https://www.instagram.com/tommasobattisti/">INSTAGRAM</a>
<div class="spacer"></div>
<a target="_blank" class="coverflickr" href="https://www.flickr.com/people/191101266@N05/">FLICKR</a>
</div>
</header>
</body>
</html>