JOB BARRERA RUIZ

All generations.

hacer una tarjeta de crédito en html

<div class="container"> <div class="card"> <div class="card-front"> <img src="" class="logo"> <hr> <p><span class="card-number">0000 0000 0000 0000</span></p> <p><span class="card-name">NOMBRE DEL TITULAR</span></p> <p><span class="card-valid">MM/YY</span></p> </div> <div class="card-back"> <img src="" class="logo"> <div class="card-security"> <div class="security-number"> <p>0000</p> </div> <div class="security-number"> <p>0000</p> </div> <div class="security-number"> <p>0000</p> </div> <div class="security-number"> <p>0000</p> </div> </div> </div>

hacer un detector de ubicación en tiempo real en html

## javascript * **js framework vs library** * it's a library if it adds only an extra layer of abstraction on top of the language itself * it's a framework if it adds an extra layer of abstraction and also has a default way of doing things * framework: angular, react * library: jquery, lodash ## css * **algo de css** * how to remove the space between inline-block elements? * https://css-tricks.com/fighting-the-space-between-inline-block-elements/ * https://css-tricks.com/almanac/properties/f/font-size/

hacer una tabla

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Page Title</title> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> </body> </html>

detector de ubicación en tiempo real que no pida permisos para ejecutar en html

<div class="geo"> <h3>Where are you?</h3> <p id="status">getting geolocation data&hellip;</p> <p id="map"> <em>Geolocation not supported by your browser.</em> </p> </div> <script> // Create a variable to hold our map var map; // Create a new blank array for all the listing markers. var markers = []; // This global polygon variable is to ensure only ONE polygon is rendered. var polygon = null; function initMap() { // Create a styles array to use with the map. var styles = [ { featureType: "water", stylers: [ { color: "#19a0d8" } ] },{ featureType: "administrative", elementType: "labels.text.stroke", stylers: [ { color: "#ffffff" }, { weight: 6 } ] },{ featureType

text to sql syntaxWed, 21 Jun 2023

Crear las tablas con la siguientes entidades: Tabla: Ciclo • id_ciclo (clave primaria) • nombre_ciclo • descripcion_ciclo Tabla: Curso • id_curso (clave primaria) • id_ciclo (clave foránea hacia la tabla Ciclo) • numero_curso • descripcion_plan_estudios • num_alumnos_matriculados Tabla: Grupo • id_grupo (clave primaria) • id_curso (clave foránea hacia la tabla Curso) • letra_grupo • num_alumnos Tabla: Profesor • id_profesor (clave primaria) • dni • nombre • direccion • datos_bancarios • fecha_nacimiento • telefono_contacto • titulacion Tabla: Asignatura • id_asignatura (clave primaria) • codigo_asignatura • nombre_asignatura • descripcion_asignatura Tabla: Horario • id_horario (clave primaria) • id_asignatura (clave foránea hacia la tabla Asignatura) • id_grupo (clave foránea hacia la tabla Grupo) • id_profesor (clave foránea hacia la tabla Profesor) • horario Tabla: Alumno • id_alumno (clave primaria) • codigo_identificador • nombre_alumno • direccion • telefono • fecha_nacimiento • nombre_padre • nombre_madre • datos_bancarios • id_ciclo (clave foránea hacia la tabla Ciclo) • id_curso (clave foránea hacia la tabla Curso) • id_grupo (clave foránea hacia la tabla Grupo) Tabla: ServicioComplementario • id_servicio (clave primaria) • codigo_servicio • descripcion_servicio • cuantia Tabla: Beca • id_beca (clave primaria) • codigo_beca • cuantia_anual Tabla: AlumnoBeca • id_alumno (clave foránea hacia la tabla Alumno) • id_beca (clave foránea hacia la tabla Beca)

CREATE TABLE ciclo ( id_ciclo int(5) NOT NULL AUTO_INCREMENT, nombre_ciclo varchar(20) NOT NULL, descripcion_ciclo varchar(200) NOT NULL, PRIMARY KEY (id_ciclo) ); CREATE TABLE curso ( id_curso int(5) NOT NULL AUTO_INCREMENT, id_ciclo int(5) NOT NULL, numero_curso int(2) NOT NULL, descripcion_plan_estudios varchar(200) NOT NULL, num_alumnos_matriculados int(5) NOT NULL, PRIMARY KEY (id_curso), FOREIGN KEY (id_ciclo) REFERENCES ciclo(id_ciclo) ); CREATE TABLE grupo ( id_grupo int(5) NOT NULL AUTO_INCREMENT, id_curso int(

hacer una pagina web

html <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Pagina web</title> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> </head> <body>

hacer una tabla de 5 x 4

<table> <tr> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> </tr> </table>

Questions about programming?Chat with your personal AI assistant