-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
59 lines (58 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/fontello.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js"></script>
<title>Mascotas</title>
</head>
<body>
<header>
<div class="contenedor">
<h1 class="icon-guidedog">My Pets</h1>
<input type="checkbox" name="" id="menu-bar">
<label class="icon-menu" for="menu-bar"></label>
<nav class="menu">
<a href="">Inicio</a>
<a href="">Mascotass</a>
<a href="">Blog</a>
<a href="">Contacto</a>
</nav>
</div>
</header>
<main>
<section id="banner">
<img src="img/banner.jpg">
<div class="contenedor">
<h2>Mascotas y niños felices</h2>
<p>Cual es la mejos mascota para ti</p>
<a href="#">Leer mas</a>
</div>
</section>
<section id="bienvenidos">
<h2>Bienvenido a nuestro club</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Non fuga eveniet, nobis voluptatibus excepturi laboriosam ipsum deleniti at hic mollitia praesentium recusandae rerum nulla dolorum aliquid quisquam expedita accusantium impedit.</p>
</section>
<section id="blog">
<h3>Lo ultimo de nuestro blog</h3>
<div class="contenedor">
<article>
<img src="img/blog1.jpg" alt="">
<h4>Los animales necesitan cariño</h4>
</article>
<article>
<img src="img/blog2.jpg" alt="">
<h4>Escoge tu mascota perfecta</h4>
</article>
<article>
<img src="img/blog3.jpg" alt="">
<h4>Los animales solo saben amar</h4>
</article>
</div>
</section>
</main>
</body>
</html>