This file contains hidden or 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
| :root { | |
| --blanco: #ffffff; | |
| --oscuro: #212121; | |
| } | |
| //Para utilizar el codigo de arriba | |
| //por ejemplo queremos seleccionar la clase de titulo. | |
| .titulo { | |
| color: var(--oscuro); | |
| } |
This file contains hidden or 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
| <div class="imagen"> | |
| <picture> | |
| <source srcset="build/img/imagen_vocalista.avif" type="image/avif"> | |
| <source srcset="build/img/imagen_vocalista.webp" type="image/webp"> | |
| <img loading="lazy" width="200" height="300" src="build/img/imagen_vocalista.jpg" alt="imagen vocalista"> | |
| </picture> | |
| </div> |
This file contains hidden or 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
| <?php | |
| //importar la conexion | |
| require 'includes/config/database.php'; | |
| $db = conectarDB(); | |
| //Crear un Email y Password | |
| $email = "[email protected]"; | |
| $password = "123456"; | |
| $passwordHash = password_hash($password, PASSWORD_DEFAULT); |