-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/fancybox/fancybox.css"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<title>Document</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-dark" data-bs-theme="dark">
<ul class="nav">
<li><a href="#primero">De aquí provengo</a></li>
<li><a href="#segundo">Video Tour</a></li>
<li><a href="#tercero">¿Dónde se encuentra?</a></li>
</ul>
</nav>
</header>
<main class="d-flex">
<section class="titular ">
<h1>HIGUEROTE</h1>
</section>
</main>
<section class="primero fondo d-flex flex-column" id="primero">
<h2>Higuerote es un pueblo costero</h2>
<a class="centro d-flex"data-fancybox data-src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/0c/e5/8b/31/photo1jpg.jpg?w=700&h=500&s=1"><img class="centro "src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/0c/e5/8b/31/photo1jpg.jpg?w=700&h=500&s=1" alt=""></a>
</section>
<section class="segundo fondo d-flex flex-column" id="segundo">
<h2>Tour virtual</h2>
<a class="centro d-flex" href="https://www.youtube.com/watch?v=OtrNy1TPr6Y" data-fancybox data-width="640" data-height="360" ><button class="boton">Ver video</button></a>
</section>
<section class="tercero fondo d-flex flex-column" id="tercero">
<h2>¿Cómo llegar?</h2>
<a class="centro d-flex" href="https://www.google.com/maps/@10.4657772,-66.1389406,13z"data-fancybox data-width="800"
data-height="600"><button class="boton">Ver mapa</button></a>
</section>
<script src="https://code.jquery.com/jquery-3.6.4.slim.min.js" integrity="sha256-a2yjHM4jnF9f54xUQakjZGaqYs/V1CYvWpoqZzC2/Bw=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/fancybox/fancybox.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script src="./main.js"></script>
</body>
</html>