LEARN BASIC CSS - Building a Cafe Menu
* HTML define la forma y estructura de una página web, mientras que el CSS es un lenguaje que funciona a través de hojas de diseño, que decide la apariencia visual a través de estilos . VIDEO INTRODUCTORIO A CSS: Cascading Style Sheets https://www.youtube.com/watch?v=aNEOu7de_FQ CURSO CSS: https://www.freecodecamp.org/learn/ ETIQUETAS DEL CURSO: LANG atribute (etiqueta para Lenguaje) < p lang ="fr" > Ceci est un paragraphe. < /p > SIMPLE HTML DOCUMENT: (html, head, title, body) < !DOCTYPE html > < html lang ="en" > < head > < title > Title of the document < /title > < style > h1 { color : red ; } p { color : blue ; } h1 { text-align: center ; } < /style > < /head > < body > <main> <section> < h1 > This is...