-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (63 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Petshop</title>
<link href="./css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="header-1">
<div class="headerL header-left">
Grandes ofertas en comederos
</div>
<div class="headerR header-right">
idioma moneda
</div>
</div>
<div class="div2">
<img src="img/logo.svg" alt="logo petshop">
<nav>
<ul class="div3">
<li>Categorías</li>
<li>Pets</li>
<li>Nosotros</li>
<li>Contactanos</li>
</ul>
</nav>
</div>
</header>
<main>
<section class="imgbowl">
<ul class="opciones1">
<li>Es un placer tenerte aquí</li>
<li>¡Comederos en descuento!</li>
<li>COMEDEROS</li>
</ul>
</section>
<section>
<img src="img/pawprint 1.svg" alt="imagen huella">
<span>Productos Destacados</span>
<span><a>Comederos</a> - <a>Accesorios</a> - <a>Comida</a></span>
<div>
<img src="img/churrasquito.jpg" alt="imagen churrasco">
<span>Juguete churrasquito</span>
<span>$150</span>
</div>
<div>
<img src="img/comedero.jpg" alt="imagen comedero">
<span>Comedero para perro</span>
<span>$250</span>
</div>
<div>
<img src="img/Huesito.jpg" alt="imagen huesito">
<span>Juguete huesito</span>
<span>$650</span>
</div>
</section>
</main>
<footer>
<h6>Todos los derechos reservados</h6>
</footer>
</body>
</html>