This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 3.34 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
<!DOCTYPE html>
<html>
<head>
<title>Estrella Index</title>
<meta charset="utf-8">
<meta lang="es">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<!--CSS-->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!--Header-->
<div class="header d-flex flex-row justify-content-center">
<img src="img/Estrella-test.jpg" alt="Floristería Estrella">
</div>
<!--Nav-->
<div class="nav d-flex flex-row justify-content-around flex-wrap" id="nav">
<a type="button" class="btn" href="index.html">Inicio</a>
<a type="button" class="btn" href="productos.php">Productos</a>
<a type="button" class="btn" href="contact.php">Contacto</a>
<a type="button" class="btn" href="about.php">Sobre nosotros</a>
<a type="button" class="btn" href="cesta.php">Cesta</a>
</div>
<!--Nav2-->
<div id="nav2" class="nav2">
<img src="img/moreMenu.png" onclick="esconder()" onload="iniciarNav2()"><br>
<div id="esconder">
<a type="button" class="btn" href="index.html">Inicio</a><br>
<a type="button" class="btn" href="productos.php">Productos</a><br>
<a type="button" class="btn" href="contact.php">Contacto</a><br>
<a type="button" class="btn" href="about.php">Sobre nosotros</a><br>
<a type="button" class="btn" href="cesta.php">Cesta</a><br>
</div>
<script>
function iniciarNav2() {
var x = document.getElementById("esconder");
x.style.display="none";
}
function esconder() {
var x = document.getElementById("esconder");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
</div>
<h2 class="d-flex flex-row texto titulo">
¿Qué es estrella?
</h2>
<p class="d-flex flex-row texto">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</body>
</html>