This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
forked from paecs21/TP1-veterinaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/94999b235b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/menu-flexbox.css">
<!-- <link rel="stylesheet" href="css/footer.css">-->
<title>Veterinaria Anubis</title>
</head>
<body >
<header ><!--menú-->
<div class="logo" >
<img src="imagenes/logo.jpg" >
<button id="boton1" class="boton"><i class="fa-solid fa-bars" class="icono"></i></button>
</div>
<div class="menu">
<nav id="nuevacaja" class="cajaDeBotones" >
<a href="index.html">Inicio</a>
<a href="html/servicios.html">Servicios</a>
<a href="html/productos.html">Productos</a>
<a href="html/contacto.html">Contacto</a>
</nav>
</div>
</header>
<div class="vacio">
</div>
<div class="pieDePagina">
<footer>
<div class="cont">
<p>productos</p>
<p>servicios</p>
<p>contacto</p>
</div>
<div class="social">
<p>facebook</p>
<p>instagram</p>
<p>twitter</p>
</div>
<div class="contacto">
<p>direccion</p>
<p>telefono</p>
<p>email</p>
</div>
</footer>
</div>
<script src="javaScript/abrir_menú.js"></script>
</body>
</html>