Trustpilot
29 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam, mollitia.
30 |├── clase-2 ├── juan.html ├── contacto.html ├── nuevo.html ├── documentacion.txt ├── pepe.html └── index.html ├── clase-16 ├── documentacion.md ├── index.html ├── index.js └── correccion.js ├── clase-24 ├── .gitignore ├── src │ ├── main.jsx │ └── App.jsx ├── vite.config.js ├── index.html ├── README.md ├── package.json └── public │ └── vite.svg ├── clase-10 ├── .vscode │ └── settings.json ├── absolute │ ├── index.html │ ├── buscador-ml.html │ ├── style.css │ └── buscador-ml.css ├── relative │ ├── index.html │ └── style.css └── fixed │ ├── buscador-ml.html │ └── buscador-ml.css ├── clase-12 ├── .vscode │ └── settings.json ├── index.html └── script.js ├── clase-8 ├── .vscode │ └── settings.json ├── flex │ ├── index.html │ └── style.css ├── index.html ├── practica-hostinger │ ├── style.css │ └── index.html └── style.css ├── clase-23 ├── src │ ├── style.css │ ├── Components │ │ ├── Link.jsx │ │ ├── Boton.jsx │ │ ├── Formulario.jsx │ │ ├── Titulo.jsx │ │ └── SubscriptorCard.jsx │ ├── main.jsx │ └── App.jsx ├── vite.config.js ├── .gitignore ├── index.html ├── README.md ├── package.json └── public │ └── vite.svg ├── entergaron.txt ├── clase-25 ├── src │ ├── Components │ │ ├── FileList │ │ │ ├── FileList.css │ │ │ ├── hola.css │ │ │ └── FileList.jsx │ │ ├── index.js │ │ ├── ChatHistory │ │ │ └── ChatHistoryExample.jsx │ │ ├── ContactList │ │ │ ├── ContactList.jsx │ │ │ └── ContactList.css │ │ └── MenuDesplegableTareaCorregida.jsx │ ├── Icons │ │ └── index.js │ ├── style.css │ ├── Pages │ │ ├── ContactPage.jsx │ │ ├── ErrorPage.jsx │ │ └── HomePage.jsx │ ├── main.jsx │ ├── data-example.js │ ├── map-documentacion.js │ ├── utils │ │ └── constants.js │ ├── App.jsx │ ├── data-files.js │ └── data.js ├── public │ ├── images │ │ └── captura.png │ └── vite.svg ├── vite.config.js ├── .gitignore ├── index.html ├── README.md └── package.json ├── clase-3 ├── images │ └── autorojo.jpg ├── audios │ └── thinking-time-148496.mp3 ├── video │ └── istockphoto-1952193211-640_adpp_is.mp4 ├── pages │ └── contact.html └── tareas │ └── tarea.html ├── clase-19 ├── correcciones │ ├── math.js │ ├── index.html │ └── script.js └── index.html ├── proyecto-ecommerce ├── src │ ├── Pages │ │ ├── index.js │ │ ├── Detail │ │ │ └── Detail.jsx │ │ └── Home │ │ │ └── Home.jsx │ ├── Components │ │ ├── index.js │ │ ├── Footer │ │ │ └── Footer.jsx │ │ └── Header │ │ │ └── Header.jsx │ ├── main.jsx │ ├── App.jsx │ ├── hooks │ │ └── useProducts.jsx │ └── fetching │ │ └── productsFetching.js ├── vite.config.js ├── .gitignore ├── index.html ├── README.md ├── package.json └── public │ ├── vite.svg │ └── data │ └── products.json ├── clase-11 ├── hostinger-mediaqueries │ ├── images │ │ ├── ines.avif │ │ ├── alejandro.avif │ │ └── jonh-ortega.avif │ └── styles │ │ ├── style.css │ │ ├── normalize.css │ │ ├── global.css │ │ └── card-review.css ├── nav-blizzard │ ├── styles │ │ ├── normalize.css │ │ ├── style.css │ │ └── header.css │ ├── images │ │ └── battle-net.svg │ └── index.html ├── index.html ├── layout-2-asides │ └── style.css ├── style.css └── tartea-hostinger-clase-22-7 │ ├── style.css │ └── index.html ├── slack-clone ├── src │ ├── main.jsx │ ├── Components │ │ ├── ChatItem │ │ │ └── ChatItem.jsx │ │ ├── ChannelItem │ │ │ └── ChannelItem.jsx │ │ ├── Botones │ │ │ └── Botenes.jsx │ │ ├── ChannelList │ │ │ └── ChannelList.jsx │ │ └── ChatList │ │ │ └── ChatList.jsx │ └── App.jsx ├── vite.config.js ├── .gitignore ├── index.html ├── README.md └── package.json ├── clase-22-REACT ├── src │ ├── main.jsx │ └── App.jsx ├── vite.config.js ├── .gitignore ├── index.html ├── README.md ├── package.json └── public │ └── vite.svg ├── github-git pasos ├── git-registro.md ├── gitflow.md └── introduccion.md ├── React-proyecto-en-blanco ├── src │ ├── main.jsx │ └── App.jsx ├── vite.config.js ├── .gitignore ├── index.html ├── README.md ├── package.json └── public │ └── vite.svg ├── clase-15 ├── index.html ├── explicacion.js ├── correccion.js └── script.js ├── clase-14 └── index.html ├── clase-13 └── index.html ├── clase-18 ├── index.html ├── temas-vistos.md ├── metodos-de-string.js └── script.js ├── clase-20 ├── index.html ├── DOM │ ├── index.html │ └── script.js ├── script.js └── consigna.md ├── clase-21 ├── map │ ├── index.html │ └── script.js ├── index.html └── script.js ├── clase-7 ├── pages │ └── contact.html ├── index.html ├── tarea.html ├── styles │ └── style.css └── tarea.css ├── clase-17 ├── index.html ├── script.js ├── tareas.js └── objetos.js ├── pasos-react-con-vite.txt ├── clase-4 ├── html-de-prueba.html ├── html-semantico.html ├── tarea-navegador-mdn.html ├── formularios.html ├── tarea-html-semantico.html ├── navegador-complejo.html └── index.html ├── clase-5 └── index.html ├── clase-9 ├── correccion │ ├── style.css │ └── index.html ├── tarea-1-mdn │ ├── style.css │ └── index.html └── tarea-2-excalidraw │ └── style.css └── clase-6 ├── especificidad.html ├── index.html └── solucion-tarea.html /clase-2/juan.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clase-2/contacto.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clase-16/documentacion.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clase-2/nuevo.html: -------------------------------------------------------------------------------- 1 |
{text}
8 |18 | the javaScript console is an essential tool for web development.Learn new and fun ways to. use the console to display data and debug 19 |
20 |{props.descripcion}
41 | Fecha: 13/02/2015 42 |
35 | Hola a todos
35 |Hola a todos
39 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Quibusdam, mollitia.
30 |Lorem ipsum dolor, sit amet consectetur adipisicing elit. Repellendus, a.
36 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita, voluptas!
41 | 45 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Voluptates omnis id incidunt, laborum quae odit ab libero sint nemo. Repudiandae qui, nobis ratione voluptate aperiam error aut expedita quos sint!
45 | Link a clase X 46 |Lorem ipsum, dolor sit amet consectetur adipisicing elit. Voluptates omnis id incidunt, laborum quae odit ab libero sint nemo. Repudiandae qui, nobis ratione voluptate aperiam error aut expedita quos sint!
52 |pleas register below to gain full access to whitepapper, ebooks, podscats, demos and more. Fields marked with * are required
16 | 17 | 18 | 71 |21 | La mejor ventaja es que Hostinger incluye tecnologías predeterminadas como SSL. En el pasado tuve 22 | problemas para configurar dichas tecnologías en mis sitios web, no con Hostinger. 23 |
24 |36 | "Los planes incluyen certificados SSL y todos los servidores tienen un módulo de seguridad avanzado 37 | para proteger tus datos." 38 |
39 |51 | Me encanta el nivel de seguridad que le ofrece hostinger a mis sitios web. La facilidad de 52 | instalación de SSL gratis. Sin cargos anuales y alta seguridad para siempre! 53 |
54 |15 | Me gusta la atención y que mi página corre muy rápido, la migración desde otros sitios es muy fácil, buenos precios y muy competitivos. 16 |
17 |36 | Me gusta la atención y que mi página corre muy rápido, la migración desde otros sitios es muy fácil, buenos precios y muy competitivos. 37 |
38 |57 | Me gusta la atención y que mi página corre muy rápido, la migración desde otros sitios es muy fácil, buenos precios y muy competitivos. 58 |
59 |28 | The JavaScript console is an essential tool for web development. Learn new and fun ways to use the console to display data and debug your 29 |
30 |45 | What can web designers and developers do to build a more sustainable web? This post explores the environmental impacts of web technologies 46 |
47 |64 | The CSS Custom Highlight API provides a mechanism for styling arbitrary text ranges on a document by using JavaScript to create the 65 |
66 |81 | El tipo de datos CSS <color> denota un color en el sRGB color space. Un color puede ser descrito de cualquiera de las siguiente maneras: 82 |
83 |Obtené certificados de seguridad SSL ilimitados para cifrar el tráfico de tus sitios web.
18 |Protegé tu página web de ataques DDoS con nameservers protegidos por Cloudflare.
19 |20 | Protegé tus archivos con copias de seguridad automáticas.
21 |22 | Asegurate de que tu página web esté siempre online con nuestra garantía de tiempo de actividad del 99,9 %.
23 |32 | La mejor ventaja es que Hostinger incluye tecnologías predeterminadas como SSL. En el pasado tuve problemas para configurar dichas tecnologías en mis sitios web, no con Hostinger. 33 |
34 |45 | "Los planes incluyen certificados SSL y todos los servidores tienen un módulo de seguridad avanzado para proteger tus datos." 46 |
47 |