answersLogoWhite

0

HTML can't get the time for you, so the best way to do it is to use Javascript inside your page, like this:

<script language="javascript">

<!--

today = new Date();

document.write("<BR>The time now is: ", today.getHours(),":",today.getMinutes());

document.write("<BR>The date is: ", today.getDate(),"/",today.getMonth()+1,"/",today.getYear());

//-->

</script>

Copy and paste that into your web page code. It will show you the date and time.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the DOS command for weekday and time?

In DOS, you can use the date command to display or set the current date, and the time command to display or set the current time. To see the current date and time along with the weekday, you can use the echo command combined with the %date% and %time% environment variables. For example, you can enter echo %date% %time% to display the current date and time.


What command displays the time on most Linux and Unix computer?

The time command is used to time a command and not display the actual time. To display the time and date, the date command must be used.


How would one use the Unix time and function for C date?

One would use the Unix time and date function for a date in the C programming language to display the date and time from an application. When a user types the name of a program and date function is called a display will shown on the screen.


How do you display the text entered by the user in a html page on the same html pagelike i mean that real time entering the data by the user and displaying the data back to the user what he have enter?

You can do it by referring the input type in javaScript. Then you can get the value by id in the same and display it.


What is static pages using HTML?

Static pages in HTML are the ones that do not change over time. They are the ones that have no changing elements.


What time result will display on 14th feb2010?

give me date and time of diploma result winter2009


Do ipods tell the time?

They do. If you would like it to display the time, go to settings, and then 'Date and Time' and then turn 'time in title'. There are also other time options under date and time.


Write a program that display the current date of the system using C programming language and ALP?

#include &lt;stdio.h&gt; #include &lt;time.h&gt; void main() { time_t t; time(&amp;t); clrscr(); printf("Today's date and time :\n %s",ctime(&amp;t)); getch(); }


How to display current date in html using javascript?

You can't do it in HTML, but you can in javascript or PHP, which can be added to an HTML document. Just add the code to where you want it to display the time. &lt;?PHP print(Date("l F d, Y")); ?&gt; &lt;script type="text/javascript"&gt; &lt;!-- document.write(Date()); --&gt; &lt;/script&gt;


How do you change date and time on Sharp xe-1054 cash register?

To change the date, set the tab on the the top to "rate set" enter the date in MM.DD.YY format, pressing the decimal key between the month and day (will show as a decimal on the display) and the day and year (will show as a dash on the display). Then, press the Time/Date key (the one that looks like a clock and a calendar). The new date will show on the display. Note that if the month is less than 10, you do need to press the 0 (zero) key for the first digit, even though it will not show on the display. To change the time, enter the time in 24-hour HH.MM format, pressing the decimal key between the hour and minute. Then, press the Time/Date key. The new time will show on the display. Note that if the hour is less than 10, you do need to press the 0 (zero) key for the first digit, even though it will not show on the display. When you are finished be sure the set the tab back to the "&bull;" which is the neutral position.


When will the iPad mini retina be released?

At this time there is no release date for the New Ipad mini with retina display.


What is a date stamp in excel?

It show the current date on the spreadsheet, and can include the time if you want. Using a few different functions you can display it, depending on what detail you want: =NOW() =TODAY() =TEXT(TODAY(),"d-mmmm-yyyy") &amp; " " &amp; TEXT(NOW(),"h:mm AM/PM")