-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 861 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Image Gallery</title>
</head>
<body>
<div id="slider">
<div class="slide">Hola 1
<img src="Imagenes/1.jpg">
</div>
<div class="slide">Hola 2</div>
<div class="slide">Hola 3</div>
</div>
<div class="container">
<img src="Imagenes/1.jpg">
<img src="Imagenes/2.jpg">
<img src="Imagenes/3.jpg">
<img src="Imagenes/4.jpg">
<img src="Imagenes/5.jpg">
</div>
<button class="prev">Prev</button>
<button class="next">Next</button>
</body>
</html>