<!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title>Test Web Page</title>
      </head>
      <body>
        <!-- page content -->
    <h1>Just Testing</h1>
    <p>Hello world!</p>
      </body>
    </html>
    jamie@vps8324:~$ cat test.html 
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title>Javascript and HTML5 Test Page</title>
      </head>
      <body>
        <!-- page content -->
    <h2>Page to test javascript and HTML5</h2>
    <script language="Javascript">
    // Hello in Javascript
    
    
    // display prompt box that ask for name and 
    // store result in a variable called who
    var who = window.prompt("What is your name");
    
    // display prompt box that ask for favorite color and 
    // store result in a variable called favcolor
    var favcolor = window.prompt("What is your favorite color");
    
    // write "Hello" followed by person' name to browser window
    document.write("Hello " + who);
    
    // Change background color to their favorite color
    document.bgColor = favcolor;
    
    </script>
    
      </body>
    </html>