How to create a Progressive Web App (PWA) or progressive web

How to create a Progressive Web App (PWA) or progressive web

Tiempo de lectura: 2 minutosReading time: 2 minutes To create a Progressive Web App (PWA) with Service Worker, follow these steps: Create a manifest.json file: This file defines how the application will look and behave on different devices. It includes information such as the application name, application icon, color theme, screen orientation, and more. { “name”: “My PWA App”, … Read more

HTML Tables + JavaScript

HTML Tables + JavaScript

Tiempo de lectura: 2 minutosReading time: 2 minutes To create a simple table from an array of objects, follow the steps below: First, create a file with the .html extension, where you’ll create a div with an associated ID to display the table with the data of the elements. The ID for the table within the HTML will be … Read more

LISTAS HTML + JavaScript

LISTAS HTML + JavaScript

Tiempo de lectura: 5 minutosReading time: 2 minutes To create a simple list from an array of objects, you need to follow the steps below: First, create a file with the .html extension, where we’ll create a div with an associated ID that will display the list of elements. The ID for the list, in this case, will be … Read more

How to Create a Loader Button with HTML, CSS, and jQuery

Tiempo de lectura: 2 minutosReading time: 2 minutes Good afternoon! Today I bring you a very cool and interesting tutorial about an element you can use on your website. Let’s get started! A loader button is a functionality that allows users to know when a background task is being processed, such as a request to a server. In this … Read more

Applying responsive design to an HTML, CSS, Javascript website

Applying responsive design to an HTML, CSS, Javascript website

Tiempo de lectura: 2 minutosReading time: 2 minutes Adapting a website to be responsive is a process that involves designing and developing a website that adjusts to different screen sizes and devices, providing an optimal user experience across all of them. In order to adapt a website to be responsive, it is necessary to consider the following steps: Identify … Read more

Crear un modal con Boostrap

Crear un modal con Boostrap

Tiempo de lectura: 2 minutosReading time: 2 minutes To create a modal with Bootstrap and HTML, follow these steps: Include the Bootstrap stylesheet in your HTML file. You can do this by downloading the CSS file from the Bootstrap website or including a link to an online version in your HTML file. <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css”> Add the HTML code … Read more

Creating a Spinner with HTML and CSS

Creating a Spinner with HTML and CSS

Tiempo de lectura: < 1 minutoReading Time: < 1 minute Good morning, to create a spinner (a spinning loading indicator) with HTML and CSS, you can follow these steps: First, create an empty div to which we will later give the appearance of a spinner to add to our projects. <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> … Read more

JSON File Data Access (Simple)

JSON File Data Access (Simple)

Tiempo de lectura: 2 minutosReading time: 2 minutes Good afternoon everyone, I’m going to provide you with a tutorial on how to access data: <!DOCTYPE html> <html> <body> <h2>First Example Accessing Data in JSON Format</h2> <p id=”miDiv”></p> <script> var texto = ‘[{“nombre”:”Laura Gonzalez”, “calle”:”Su casa en la montania portal 6″, “telefono”:877436700, “fecha”:”1998-07-25″},{“nombre”:”Pablo Perez”, “calle”:”Su casa en la playa bajo … Read more