Hora actual en
America/Argentina/Buenos_Aires

Welcome to my Website!

This is a paragraph! Here's how you make a link: Neocities.

Here's how you can make bold and italic text.

Here's how you can add an image:

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!

/** Relog **/ digiClock(); setInterval('digiClock()', 30000); function digiClock ( ){ var crTime = new Date ( ); var crHrs = crTime.getHours ( ); var crMns = crTime.getMinutes ( ); // var crScs = crTime.getSeconds ( ); crMns = ( crMns < 10 ? "0" : "" ) + crMns; // crScs = ( crScs < 10 ? "0" : "" ) + crScs; // var timeOfDay = ( crHrs < 12 ) ? "AM" : "PM"; // crHrs = ( crHrs > 12 ) ? crHrs - 12 : crHrs; // crHrs = ( crHrs == 0 ) ? 12 : crHrs; // var crTimeString = crHrs + ":" + crMns + ":" + crScs + " " + timeOfDay; var crTimeString = crHrs + ":" + crMns; jQuery("#clock").html(crTimeString); }