This repository has been archived by the owner on Jul 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (80 loc) · 2.69 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Ejemplo de componentes para el desarrollo de interfaces</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<h1>Título de la página</h1>
<nav>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Acerca de</a></li>
<li><a href="#">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Formulario de contacto</h2>
<form>
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="mensaje">Mensaje:</label>
<textarea id="mensaje" name="mensaje" required></textarea>
<input type="submit" value="Enviar">
</form>
</section>
<section>
<div class="nueva">
<h1>Contador de neas</h1>
<div class="nueva" id="counter"> <span id="contador">0 </span></div>
<button class="button" onclick="decrement()">-</button>
<button class="button" onclick="increment()">+</button>
</section>
</div>
<section>
<h2>Lista de productos</h2>
<ul>
<li>
<img src="https://raw.githubusercontent.com/Noisk8/esdup2023/main/public/wcag-compliant.webp"
alt="Producto 1">
<h3>Producto 1</h3>
<p>Descripción del producto 1.</p>
<button>Agregar al carrito</button>
</li>
<li>
<img src="https://raw.githubusercontent.com/Noisk8/esdup2023/main/public/wcag-compliant.webp"
alt="Producto 2">
<h3>Producto 2</h3>
<p>Descripción del producto 2.</p>
<button>Agregar al carrito</button>
</li>
<li>
<img src="https://raw.githubusercontent.com/Noisk8/esdup2023/main/public/wcag-compliant.webp"
alt="Producto 3">
<h3>Producto 3</h3>
<p>Descripción del producto 3.</p>
<button>Agregar al carrito</button>
</li>
</ul>
</section>
<section>
<h2>Slider de imágenes</h2>
<div class="slider">
<img src="https://raw.githubusercontent.com/Noisk8/esdup2023/main/public/social-preview-image.png" alt="Imagen 1" width="400">
<img src="https://raw.githubusercontent.com/Noisk8/esdup2023/main/public/wcag-compliant.webp" alt="Imagen 2" width="400">
<img src="https://raw.githubusercontent.com/Noisk8/esdup2023/main/public/accessible-components.webp" alt="Imagen 3" width="400">
</div>
</section>
</main>
<footer>
<p>Derechos de autor © 2021</p>
</footer>
<script src="/js/script.js"></script>
</body>
</html>