Question
Your assignment is to create a Web page that welcomes the user to the page, displays the current date with time and the hours and
Your assignment is to create a Web page that welcomes the user to the page, displays the current date with time and the hours and minutes left in the day. The requirements of your program are as follows: Include a comment in the code that includes the assignment name, your name and the date The web site title is Unit 5 Graded Exercise 1 Include a header that is Welcome to Your Name's Web Page! Complete the code in a single .htm fil Following the greeting, display the time and date as formatted in the example below The date and time will update to the current date and time each time the page is refreshed Following the time and date, display the hours and minutes left in the day This should update when the page is refreshed, as well Example of the page format and layout: Screen Shot 2021-02-20 at 11.15.05 AM.png Hint: You may find it useful to use the Date object and to create variables to store elements of the date. For example: var dateObject= new Date(); var minuteValue = dateObject.getMinutes(); var hourValue = dateObject.getHours(); It should look like the screen output below.
include the code page screenshots
Welcome to Your Name's Web Page The current time is Sat Feb 20 2021 11:14 AM There are 12 hour(s) and 46 minute(s) left to your dayStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started