Social Icons

Pages

Convert Celsius to Fahrenheit








Insert a number into one of the input fields below:

degrees Celsius

equals

degrees Fahrenheit

Note that the Math.round() method is used, so that the result will be returned as an integer.




Click To Know Today's Day





Click the button to display todays day of the week.








How to Display Current Date & Time

<!DOCTYPE html>
<html>
<head>
<script>
function displayDate()
{
document.getElementById("demo").innerHTML=Date();
}
</script>
</head>
<body>

<h1>
Today's date is</h1>
<p id="demo">
</p>

<button type="button" onclick="displayDate()">Display Date</button>

</body>
</html>

How to display Current Date & Time








Today's date is