-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
71 lines (55 loc) · 1.74 KB
/
footer.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
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sh a384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300i,400,500,700" rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- Reset y Style-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<style>
footer {
background-color: #002D58;
}
.footer-container {
display: flex;
justify-content: space-between;
align-items: center;
}
footer .logo-b{
width: 150px;
}
footer .ico {
font-size: 3em;
}
footer ul {
display: flex;
}
footer li {
padding: 10px;
}
footer p {
font-size: 1.2em;
}
</style>
<body>
<footer>
<div class="container footer-container">
<img class="logo-b" src="./img/logo-b.png" alt="">
<div class="">
<ul class="social-network social-circle">
<li><a href="#" class="ico" title="Facebook"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#" class="ico" title="Twitter"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</div>
<div class="container"><p>Copyright 2018 © EnglishLink. Todos los derechos reservados. </p></div>
</footer>
</body>
</html>