-
Notifications
You must be signed in to change notification settings - Fork 0
/
Galeria.html
90 lines (61 loc) · 2.11 KB
/
Galeria.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Galería BSK</title>
<link rel="stylesheet" type="text/css" href="css/styleGaleria.css">
</head>
<body>
<header class="BarraMenu">
<div class="CajaLogo"> <!--Caja logo -->
<img src="img/BSK_Viento.jpg">
</div><!--caja logo fin -->
<nav class="CajaMenu">
<a href="Index.html"> Inicio </a>|
<a href="https://www.youtube.com/@BSKeeper" target="_blank"> Youtube </a>|
<a href="https://www.facebook.com/profile.php?id=100064170699276" target="_blank"> BSK Gaming </a>|
<a href="#idProximos"> Próximos</a>|
<a href="Cuadros.html"> Especial</a>
</nav><!--caja menu fin -->
<div class="CajaMenuH">
<label for="menu" class="CajaMenuHLabel">
<img src="img/icoMenu.png">
</label>
<input type="checkbox" id="menu">
<nav class="CajaMenuHInterna">
<ol>
<li><a href="Index.html" class="ElementosMenuH"> Inicio </a></li>
<li><a href="https://www.youtube.com/@BSKeeper" target="_blank" class="ElementosMenuH"> Youtube </a></li>
<li><a href="https://www.facebook.com/profile.php?id=100064170699276" target="_blank" class="ElementosMenuH"> BSK Gaming </a></li>
<li><a href="#idProximos" class="ElementosMenuH"> Próximos</a></li>
<li><a href="Cuadros.html" class="ElementosMenuH"> Especial</a></li>
</ol>
</nav>
</div><!-- menu hamburguesa fin -->
<div class="Candado"></div>
</header><!--Barra menu fin -->
<main>
<h1>Galería</h1>
<section class="SliderFrame">
<ol>
<li>
<img src="img/slider1.png" alt="Imagen 1">
</li>
<li>
<img src="img/slider2.jpg" alt="Imagen 2">
</li>
<li>
<img src="img/slider3.jpg" alt="Imagen 3">
</li>
<li>
<img src="img/slider4.jpg" alt="Imagen 4">
</li>
</ol>
</section>
</main>
<footer class="Pie">
Sitio creado por <a href="https://www.facebook.com/BSKeeper" target="_blank"> BSK </a>
</footer><!--Pie fin -->
</body>
</html>