-
Notifications
You must be signed in to change notification settings - Fork 0
/
footerInfo.html
101 lines (63 loc) · 2.34 KB
/
footerInfo.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D compras | Home Page</title>
<!-- aos css cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<!-- google fonts cdn link -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;500&family=Roboto:wght@100;300;400;500&display=swap" rel="stylesheet">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="./vendors/hstyle.css">
</head>
<body>
<!-- header section starts -->
<!-- order section ends -->
<!-- footer section starts -->
<div class="footer">
<div class="box-container">
<div class="box">
<h3>Información de contacto</h3>
<p> <i class="fas fa-map-marker-alt"></i> Bogotá, Colombia 110111 </p>
<p> <i class="fas fa-envelope"></i> [email protected] </p>
<p> <i class="fas fa-phone"></i> 3024358217 </p>
</div>
<div class="box">
<h3>Accesos directos </h3>
<a href="#">Home</a>
<a href="#">Acerca de nosotros</a>
<a href="#">Menú</a>
<a href="#">Popular</a>
<a href="#">Galeria</a>
<a href="#">Ordenar</a>
</div>
<div class="box">
<h3>Siguenos!</h3>
<a href="#">Instagram</a>
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">LinkedIn</a>
</div>
</div>
<h1 class="credit">Desarrollado por <a href="#">D' Compras ❤️</a> Todos los derechos reservados 2021. </h1>
</div>
<!-- footer section ends -->
<!-- aos js cdn link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<!-- jquery cdn link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- custom js file link -->
<script src="./js/happ.js"></script>
<!-- initializing aos -->
<script>
AOS.init({
delay:400,
duration:1000
})
</script>
</body>
</html>