Posts

Showing posts from April, 2022

Web Development

 What is web development? Understanding code on the internet works  Web Developers Build websites in general, and other web services  How Does the web work, calling a friend is analogy  HTTPS: Hypertext Transfer Protocol Secure  The "language " client and server speak  between browser and this remote computer  The three key programming Languages  HTML the content and structure of the displayed page  CSS The styling of the displayed page and its content JavaScript Interactivity that might be needed on the displayed page  URL (Uniform Resource Locator ) Why visual studio code? understanding HTML  HTML is a markup language  Tags an inside its element content  opening and closing tag  Which HTML elements exist? There are many available HTML elements because there are a lot of things you can describe  You will learn about lots of important HTML elements in this course, you can also use resources like MDN to look up ...

Css flexbox

 https://css-tricks.com/snippets/css/a-guide-to-flexbox/  Alineando los elementos  mapas de curso  tamaño especifico  footer  space flex  alinear formulario  columnas para version  

Formulas y tablas HTML 3 y CSS 3

 Pagina de contacto  Formulario siempre en css se llama style.css Etiqueta especifica para formulario  <form> </form> Manipular tamaño del texto    < form >                 < label for = "nombreapellido" > Nombre y Apellido </ label >                 < input type = "text" id = "nombreapellido" >                             < labe for = "correoelectronico" > correo Electronico </ label >                 < input type = "text" id = "correoelectronico" >                 < label for = "telefono" > Telefono </ label >                 < input type = "text" id = "telefono" >               ...

Javascript Programación orientada a objetos

 Objeto, un molde de informacion donde el molde contiene el nombre de nuestras cuentas, para manejar a los demás. es una plantilla que nos permite usar los conceptos  clases  Atributos  Que es un metodo? es el comportamiento de las clases, se puede incrementar  class cuenta { this.saldo += this.saldo+valor; } Definir el tipo de dato  Metodos privados  _  # costructor de la clase  Modularizando el codigo  Null y undefied Null, no existe pero está explicito  Atributos privados  get  set  Constructores  Inicializar  Herencia  es que una clase pueda tomar toda la funcionalidad de otra hija o sea, extender la clase  encapsular  clases abstractas  solo marco pero no hace nada