Quiz 1 Solution

1. Write the complete HTML code that will display "Hello, World" in the title bar and "My name is ... " in the main window of the browser as a centered header in the largest character size.

         <html> 
            <head> 
               <title>Hello World </title> 
            </head> 
         
<body> <center> <h1> My Name is Jon Bon Jovi </h1> </center> </body> </html>

2. Write the HTML fragment of code that will display an ordered list of the first four planets of our solar system.

         <ol> 
            <li> mercury 
            <li> venus 
            <li> earth 
            <li> mars 
         </ol>