-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (114 loc) · 4.69 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Fundacion para la familia - Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="FUNDACION, FAMILIA, PUERICULTURA, PEDIATRIA, ACOMPAÑAMIENTO">
<meta name="description" content="Pagina Institucional de la Fundacion para la Familia">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header class="header">
<nav class="header_nav">
<a href="./index.html"><img src="./img/fundacion_logo.jpeg" alt="Fundacion para la familia" class="header_titleLogo"></a>
<ul id="myLinks">
<li><a href="./index.html">Inicio</a></li>
<li><a href="./pages/services.html">Servicios</a></li>
<li><a href="./pages/galery.html">Galeria</a></li>
<li><a href="./pages/who.html">Acerca de</a></li>
<li><a href="./pages/contacts.html">Contacto</a></li>
</ul>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</nav>
</header>
<section>
<div class="banner__images">
<img src="./img/home_banner.jpg" alt="Imagen" class="home__image">
<h2 class="banner__images-title">Fundacion para la familia</h2>
<button type="button" class="home__button"><a href="./pages/contacts.html#contact">Contacto</a></button>
</section>
<section class="section">
</div>
<div class="home__news">
<h3 class="home__news-title">Contenido</h3>
<div class="home__news-preview">
<article>
<p>Preview last news</p>
</article>
<article>
<p>Preview last news</p>
</article>
<article>
<p>Preview last news</p>
</article>
<article>
<p>Preview last news</p>
</article>
</div>
</div>
</section>
<footer class="section">
<section class="section__footer-block">
<div class="footer__logo-div">
<img src="./img/fundacion_logo_footer.jpeg" alt="Fundacion para la familia" class="footer__logo-img">
</div>
<div class="footer__text">
<div class="footer__text-size">
<div class="footer__text-size">
<h4>Fundacion</h4>
</div>
<div class="footer__text-left footer__text-size">
<ul>
<li><a href="./pages/services.html">Servicios</a></li>
<li><a href="./pages/galery.html">Contenido</a></li>
<li><a href="./pages/contacts.html#map">Ubicacion</a></li>
</ul>
</div>
</div>
<div class="footer__text-size">
<div class="footer__text-size">
<h4>Company</h4>
</div>
<div class="footer__text-left footer__text-size">
<ul>
<li><a href="./pages/who.html">Acerca de</a></li>
</ul>
</div>
</div>
<div class="footer__button">
<button type="button" class="footer__button-button"><a
href="./pages/contacts.html#contact">Contact</a></button>
</div>
</div>
</section>
<hr>
<section class="section__footer-social">
<div>
<ul>
<li>
<p>Seguinos:</p>
</li>
<li class="social__logo"><a href="https://www.instagram.com/fundacion.paralafamilia/"><img
src="./img/instagram-logo.jpg" alt="Ig logo"></a></li>
</ul>
</div>
</footer>
<script>
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "flex") {
x.style.display = "none";
} else {
x.style.display = "flex";
}
}
</script>
</body>
</html>