-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (110 loc) · 4.19 KB
/
Copy pathindex.html
File metadata and controls
110 lines (110 loc) · 4.19 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GameShop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<nav>
<div class="brand">
<a href="#">
<img src="img/logo_joystick.svg" alt="GameShop">
<span><strong>Game</strong>Shop</span>
</a>
</div>
<a href="#" class="mobile-menu">
<img src="img/hamburger_menu.svg" alt="menu">
</a>
<ul>
<li><a href="#">Categorías</a></li>
<li><a href="#">Ofertas</a></li>
<li><a href="#">Moda</a></li>
<li><a href="#">Favoritos</a></li>
<li class="carrito">
<a href="#">
<img src="img/shopping_cart.svg" alt="Carrito">
</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<div id="slide">
<p><strong>25%</strong> de descuento en juegos de playstation 4</p>
<a href="" role="button">Comprar</a>
</div>
<div class="container">
<section id="products">
<h2>Productos Destacados</h2>
<div class="flex j-center">
<article class="card">
<img src="img/prod1.png" alt="Detroit: Become Human">
<footer>
<span>$3200</span>
<span>12 x $266,66 sin interés</span>
<span>Envío gratis</span>
</footer>
</article>
<article class="card">
<img src="img/prod2.jpg" alt="Detroit: Become Human">
<footer>
<span>$3200</span>
<span>12 x $266,66 sin interés</span>
<span>Envío gratis</span>
</footer>
</article>
<article class="card">
<img src="img/prod3.png" alt="Detroit: Become Human">
<footer>
<span>$3200</span>
<span>12 x $266,66 sin interés</span>
<span>Envío gratis</span>
</footer>
</article>
</div>
</section>
<section id="popular">
<h2>Productos estrella</h2>
<div class="flex j-center">
<a href="" class="banner" style="background-image: url(img/chairs.jpg)">
Sillas Gamer
</a>
<a href="" class="banner" style="background-image: url(img/computers.jpg)">
Computadoras
</a>
</div>
</section>
</div>
</main>
<footer>
<div class="container">
<nav>
<div class="brand">
<a href="#">
<img src="img/logo_joystick.svg" alt="GameShop">
<span><strong>Game</strong>Shop</span>
</a>
</div>
<div class="social">
Redes Sociales
<ul>
<li><a href="https://twitter.com/" target="_blank"><img src="img/twitter.svg" alt="Twitter"></a></li>
<li><a href="https://facebook.com/"><img src="img/facebook.svg" alt="Facebook"></a></li>
<li><a href="https://instagram.com/"><img src="img/instagram.svg" alt="Instagram"></a></li>
</ul>
</div>
</nav>
</div>
<div class="copyright">
<div class="container">
<p>Todos los derechos reservados</p>
</div>
</div>
</footer>
</body>
</html>