Link to home
Start Free TrialLog in
Avatar of CMChalcraft
CMChalcraftFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Html 5 code

Hi,

I cannot get this script to show the date and time. Tried IE, Safari and Chrome. What is wrong?

Trying the learn Javascript with html and this is the first exercise!

Need help.

Regards

Chris

<!DOCTYPE html>

<html lang=“en”>
	<head>
		<title>Displaying Time and Dates</title>
	</head>

	<body>
		<h1>Current Date and Time</h1>
	<script type=“text/javascript”>
	now = new Date();
	localtime = now.toString();
	utctime = now.toGMTString();
	document.write(“<p><strong>Local time:</string> “ + localtime + “</p>”);
	document.write(“<p><strong>UTC time:</strong> “ utctime + “</p>”);
	</script>
	</body>
</html>

Open in new window

Avatar of Mark Bullock
Mark Bullock
Flag of United States of America image

I changed your smart quotes (probably from Word) to normal quotes.
I fixed the first closing tag for strong.
And this displays the date and time.
<!DOCTYPE html>

 <html lang="en">
       <head>
             <title>Displaying Time and Dates</title>
       </head>

       <body>
             <h1>Current Date and Time</h1>
       <script type="text/javascript">
       now = new Date();
       localtime = now.toString();
       utctime = now.toGMTString();
       document.write("<p><strong>Local time:</strong> "+ localtime + "</p>");
       document.write("<p><strong>UTC time:</strong> " + utctime + "</p>");
       </script>
       </body>
 </html> 

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of CMChalcraft
CMChalcraft
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
CMChalcraft, did you mean to give Mark the points for this?  

Also, a very good text editor for mac http://www.barebones.com/products/textwrangler/ (free)  http://brackets.io/ (free)  https://www.jetbrains.com/webstorm/
Avatar of CMChalcraft

ASKER

Very quick response.