This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO reservaciones (nombre, apellido, hora, fecha, servicios) VALUES | |
('Juan', 'De la torre', '10:30:00', '2021-06-28', 'Corte de Cabello Adulto, Corte de Barba' ), | |
('Antonio', 'Hernandez', '14:00:00', '2021-07-30', 'Corte de Cabello Niño'), | |
('Pedro', 'Juarez', '20:00:00', '2021-06-25', 'Corte de Cabello Adulto'), | |
('Mireya', 'Perez', '19:00:00', '2021-06-25', 'Peinado Mujer'), | |
('Jose', 'Castillo', '14:00:00', '2021-07-30', 'Peinado Hombre'), | |
('Maria', 'Diaz', '14:30:00', '2021-06-25', 'Tinte'), | |
('Clara', 'Duran', '10:00:00', '2021-07-01', 'Uñas, Tinte, Corte de Cabello Mujer'), | |
('Miriam', 'Ibañez', '09:00:00', '2021-07-01', 'Tinte'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (document) { | |
var checkCount = 0, | |
formatFound = false; | |
function setHTMLClass(height, className) { | |
checkCount++; | |
if (height == 2) { | |
formatFound = true; | |
document.documentElement.className += " " + className; | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li> | |
<p>Café Latte <span>Café Espresso con leche caliente evaporada</span> </p> | |
<p class="precio">$25</p> | |
</li> | |
<li> | |
<p>Café Mocha <span>Espresso con crema batida</span> </p> | |
<p class="precio">$30</p> | |
</li> | |
<li> |