-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 2.43 KB
/
index.html
File metadata and controls
79 lines (67 loc) · 2.43 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
<html>
<head>
<title>Daniel Lopes</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Lobster|Roboto" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
h1 {
font-size: 150pt;
font-family: 'Lobster', cursive;
color: #888;
margin: 0;
}
a {
text-decoration: none;
font-family: 'Roboto', serif;
color: white;
padding: 10px;
border-radius: 15px;
}
a:hover {
box-shadow: 0px 0px 10px #888;
}
#main {
width: 100%;
height: 100%;
display: flex;
align-items: center;
}
#content {
width: -moz-fit-content;
width: -webkit-fit-content;
width: fit-content;
margin: auto;
}
#fb {
background-color: #4867AA;
}
#ig {
background-color: #D5316D;
}
#gh {
background-color: #0D2636;
}
#tt {
background-color: #1DA1F2;
}
.links {
display: flex;
justify-content: space-around;
}
</style>
</head>
<body>
<div id="main">
<div id="content">
<h1>em_breve</h1>
<div class="links">
<a id="fb" target="_blank" href="http://fb.com/danielorkae"><span class="fa fa-facebook-square"></span> Facebook</a>
<a id="ig" target="_blank" href="http://instagram.com/danielorkae"><span class="fa fa-instagram"></span> Instagram</a>
<a id="gh" target="_blank" href="http://github.com/danielorkae"><span class="fa fa-github"></span> GitHub</a>
<a id="tt" target="_blank" href="http://twitter.com/danielorkae"><span class="fa fa-twitter"></span> Twitter</a>
</div>
</div>
</div>
</body>
</html>