miércoles, 23 de agosto de 2023

Meta datos para ajustarse a la pantalla de tu aparato.

CS50 example.

para que se ajuste al tamaño de la pantalla de tu aparato

time

Current Date, Place, and Time

Fecha, hora y lugar.

Place, time and date.

Mi entrada de Blog

My Blog Post

Esta es mi publicación de Bitácora.

Mostrar la fecha y hora actual en la página web.

function currentTime() { // Get the current date and time const now = new Date(); // Format the date and time let time = now.toLocaleString("en-US", { timeStyle: "short", // The date format will vary depending on the locale // For example, in the US, the date format is "MM/DD/YYYY" dateStyle: "short" }); // Display the time and date document.getElementById("clock").innerText = time; } // Set the interval to update the time and date every second setInterval(currentTime, 1000);