-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (81 loc) · 2.88 KB
/
index.html
File metadata and controls
91 lines (81 loc) · 2.88 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>Roberto Belotti, Full Stack Web Developer</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<style>
html, body {
height: 100%;
}
body {
margin: 0;
padding: 0;
width: 100%;
color: #B0BEC5;
display: table;
font-weight: 100;
font-family: 'Lato';
background-image: linear-gradient(40deg, #101010 0%, #333333 100%);
}
a {
text-decoration: none;
color: #aaa;
}
a:hover {
color: #fff;
}
.container {
text-align: center;
display: table-cell;
vertical-align: middle;
}
.content {
text-align: center;
display: inline-block;
}
.title {
font-size: 72px;
margin-bottom: 40px;
}
.subtitle {
font-size: 36px;
margin-bottom: 40px;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-5439279-29', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<div class="content">
<div class="title">Italian Web Gallery</div>
<div class="subtitle">Coming Soon</div>
<p>
<em>
<a href="http://www.robertobelotti.com" title="Roberto Belotti Full Stack Web Developer">
Roberto Belotti
</a>
</em>
</p>
<p>
info@robertobelotti.com
</p>
<p>
<a href="https://github.com/biscolab" target="_blank">
<i class="fa fa-2x fa-fw fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/robertobelotti/" target="_blank">
<i class="fa fa-2x fa-fw fa-linkedin"></i>
</a>
</p>
</div>
</div>
</body>
</html>