-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (70 loc) · 2.79 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
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="Bruno Campos Personal Website" />
<meta name="keywords" content="bruno campos,bruno,campos,blog,website" />
<title>Bruno Campos</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:300,400|Roboto+Slab:400,700|Roboto:300,300i,400,400i,500,500i,700,700i"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="css/main.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link rel="manifest" href="manifest.json" />
<meta name="theme-color" content="#050505" />
</head>
<body lang="en-US">
<div class="container">
<header class="row text-center header">
<img
src="img/bruno_campos.jpg"
alt="Author Image"
class="img-circle text-center headshot"
/>
<h1 class="author">Bruno Campos</h1>
</header>
<section id="info-pane" class="row text-center info">
<h3 class="intro">Tech // Music // Cinema // Photography // Travel</h3>
</section>
<section id="social-pane" class="row text-center social">
<a href="https://twitter.com/bruno_m_campos"
><i class="fa fa-twitter" aria-hidden="true"></i
></a>
<a href="https://facebook.com/brunocampos.net"
><i class="fa fa-facebook-official" aria-hidden="true"></i
></a>
<a href="https://github.com/brunocampos"
><i class="fa fa-github" aria-hidden="true"></i
></a>
<a href="https://instagram.com/bruno_m_campos"
><i class="fa fa-instagram" aria-hidden="true"></i
></a>
<a href="https://linkedin.com/in/brunomcampos"
><i class="fa fa-linkedin" aria-hidden="true"></i
></a>
<a href="mailto:[email protected]"
><i class="fa fa-envelope-o" aria-hidden="true"></i
></a>
</section>
</div>
<script>
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement("style");
msViewportStyle.appendChild(
document.createTextNode("@-ms-viewport{width:auto!important}")
);
document.querySelector("head").appendChild(msViewportStyle);
}
</script>
</body>
</html>