-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (44 loc) · 1.49 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="indexCss.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<title>CUIDADO DE MASCOTAS</title>
</head>
<body class="body">
<header class="header">
<nav class="header__nav">
<h1 class="header__h1">CUIDADO ANIMAL</h1>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars"></i>
</label>
<ul class="header__ul">
<li class="header__li">
<a class="header__a" href="index.html">Inicio</a>
</li>
<li class="header__li">
<a class="header__a" href="segundo.html">Alimentacion</a>
</li>
<li class="header__li">
<a class="header__a" href="tercer.html">Control Animal</a>
</li>
<li class="header__li" >
<a class="header__a" href="tercer.html">Contacto</a>
</li>
<li class="header__li" >
<a class="header__a" href="cuart.html">Otras paginas</a>
</li>
</ul>
</nav>
</header>
<main class="main">
</main>
<footer class="footer">
</footer>
</body>
</html>