-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
137 lines (120 loc) · 6.77 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="noarchive" />
<title>Silas Maciel Ferreira</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Software Engineer and Open Source Passionate" name="description" />
<meta content="Silas Maciel Ferreira" name="author" />
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H5RTLCB0B7"></script>
<script type="text/javascript">
window.onload = function() {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
var currentDate = new Date();
gtag('js', currentDate);
gtag('config', 'G-H5RTLCB0B7');
document.getElementById('year').innerHTML = currentDate.getFullYear();
}
</script>
</head>
<body>
<div class="background"></div>
<div class="wrapper">
<div class="sidebar">
<div class="sidebar-text d-flex flex-column h-100 justify-content-center text-center">
<div>
<img class="mx-auto d-block w-75 bg-primary img-fluid rounded-circle mb-4 p-3" src="img/profile.png" alt="Image">
</div>
<h1 class="font-weight-bold">Silas Maciel Ferreira</h1>
<p class="mb-4">
Software Engineer <b>@</b> iFood
</p>
<div class="d-flex justify-content-center mb-5">
<a class="btn btn-outline-primary mr-2" target="_blank" href="https://medium.com/@silasmaciel">
<i class="fab fa-medium"></i>
</a>
<a class="btn btn-outline-primary mr-2" target="_blank" href="https://www.linkedin.com/in/silas-maciel-ferreira/">
<i class="fab fa-linkedin-in"></i>
</a>
<a class="btn btn-outline-primary mr-2" target="_blank" href="https://github.com/siilas">
<i class="fab fa-github"></i>
</a>
<a class="btn btn-outline-primary mr-2" target="_blank" href="https://stackoverflow.com/users/3602450/silas-maciel-ferreira">
<i class="fab fa-stack-overflow"></i>
</a>
</div>
</div>
<div class="sidebar-icon d-flex flex-column h-100 justify-content-center text-right">
<i class="fas fa-2x fa-angle-double-right text-primary"></i>
</div>
</div>
<div class="content">
<!-- Navbar Start -->
<div class="container p-0">
<nav class="navbar navbar-expand-lg bg-secondary navbar-dark">
<a href="" class="navbar-brand d-block d-lg-none">Navigation</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<div class="navbar-nav m-auto">
<a href="index.html" class="nav-item nav-link">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="contact.html" class="nav-item nav-link active">Contact</a>
</div>
</div>
</nav>
</div>
<!-- Navbar End -->
<!-- Contact Start -->
<div class="container bg-white pt-5">
<div class="row px-3 pb-2 justify-content-center">
<div class="col-sm-6 text-center mb-3">
<a class="nav-link" target="_blank" href="https://www.google.com.br/maps/place/Campinas">
<i class="fa fa-2x fa-map-marker-alt mb-3 text-primary"></i>
<h4 class="font-weight-bold">Address</h4>
<p>Campinas, SP, BR</p>
</a>
</div>
<div class="col-sm-6 text-center mb-3">
<a class="nav-link" target="_blank" href="mailto:[email protected]">
<i class="far fa-2x fa-envelope mb-3 text-primary"></i>
<h4 class="font-weight-bold">Email</h4>
<p>[email protected]</p>
</a>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Footer Start -->
<div class="container py-4 bg-secondary text-center">
<p class="m-0 text-white">
© <a class="text-white font-weight-bold" href="/">Silas Maciel Ferreira</a>.
All Rights Reserved. Based on a <a class="text-white font-weight-bold" href="https://htmlcodex.com">HTML Codex</a> Template.
Background image on <a class="text-white font-weight-bold" href="https://br.freepik.com/fotos-gratis/lago-laguna-del-inca-cercado-por-altas-montanhas-cobertas-de-neve-no-chile_13901480.htm">Freepik</a>.
</p>
</div>
<!-- Footer End -->
</div>
</div>
<!-- Back to Top -->
<a href="#" class="back-to-top"><i class="fa fa-angle-double-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="js/easing.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>