Write a complete HTML file that starts with the DOCTYPE and…

Write a complete HTML file that starts with the DOCTYPE and ends with the closing .  It should meet this requirements: Would validate under the W3C validator Includes a link to an external CSS file named site.css which is in the styles folder Includes a FORM with one text field and a submit button. Make sure the FORM does not submit to a server. Includes a DIV, where JavaScript can place some text. Includes a JavaScript function that is run when the button in the form is pushed.  The function should check the text field in the form.  When the value in the field is “July 2”, the message “School’s out!” should be placed in the DIV.

Suppose you have the FORM and DIV below.  A user enters thei…

Suppose you have the FORM and DIV below.  A user enters their name in the INPUT and then presses the BUTTON. Your name: Check Write the function process().  It should write a message in the output DIV that says “Who are you?” when the user leaves the INPUT empty “NAME has entered the room” if there is at least one character in the field.  Replace NAME with what the user typed. For example, it the user entered Elvis in the form, the message would be Elvis has entered the room For example, if I entered John in the INPUT and then pressed the button, the message in the DIV would be John has entered the room.