-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebooks.html
More file actions
76 lines (71 loc) · 3.66 KB
/
Copy pathebooks.html
File metadata and controls
76 lines (71 loc) · 3.66 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
<!DOCTYPE html>
<html lang="es">
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Nuestros Productos</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="parteSuperior">
<h1><img src="imagenes/Irreverente.net.png"></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="apps.html">Apps</a></li>
<li><a href="ebooks.html">Ebooks</a></li>
</ul>
</nav>
</div>
</header>
<main>
<ul class="productos">
<li class="productoListado">
<h2>WhatsApp</h2>
<img class="imagen_ebook" src="imagenes/ebooks/COMO AHORRAR TIEMPO USANDO WHATSAPP BUSINESS.png">
<p class="producto-descripcion">¿Cómo ahorra tiempo usando WhatsApp Business?</p>
<input type="button" value="$ 3 USD" id="DescargarWhatsApp" class="botonDescargar">
</li>
<li class="productoListado">
<h2>Gmail</h2>
<img class="imagen_ebook" src="imagenes/ebooks/SACALE JUGO A TU CUENTA DE GMAIL.png">
<p class="producto-descripcion">¡Sácale el juego a tu cuenta de Gmail!</p>
<input type="button" value="Gratis" id="DescargarGmail" class="botonDescargar">
</li>
<li class="productoListado">
<h2>IFTTT</h2>
<img class="imagen_ebook" src="imagenes/ebooks/COMO AHORRAR TIEMPO CON TU CELULAR Usando IFTTT.png">
<p class="producto-descripcion">¿Cómo ahorrar tiempo con tu celular usando IFTTT?</p>
<input type="button" value="$ 3 USD" id="DescargarIFTTT" class="botonDescargar">
</li>
<li class="productoListado">
<h2>TELEGRAM</h2>
<img class="imagen_ebook" src="imagenes/ebooks/AHORRA TIEMPO DE VIDA Usando Telegram.png">
<p class="producto-descripcion">¡Ahorra tiempo de vida usando Telegram!</p>
<input type="button" value="$ 3 USD" id="DescargarTelegram" class="botonDescargar">
</li>
<li class="productoListado">
<h2>RSS</h2>
<img class="imagen_ebook" src="imagenes/ebooks/COMO AHORRAR TIEMPO EN Instagram Facebook y TikTok.png">
<p class="producto-descripcion">¿Cómo ahorrar tiempo en redes sociales?</p>
<input type="button" value="Gratis" id="DescargarRss" class="botonDescargar">
</li>
<li class="productoListado">
<h2>LIFEHACKS</h2>
<img class="imagen_ebook" src="imagenes/ebooks/AHORRA TIEMPO Y DINERO Usando Apps y LifeHacks para Todos.png">
<p class="producto-descripcion">¡Ahorra tiempo y dinero usando app y lifehacks!</p>
<input type="button" value="Gratis" id="DescargarLifehacks" class="botonDescargar">
</li>
</ul>
</main>
<footer>
<img src="imagenes/Irreverente.net.png">
<p class="copyright">Mente Irreverente - 2022</p>
</footer>
<script src="ebooks.js"></script>
</body>
</html>