For this exercise, you will create an HTML document, but instead of making it available on the Web, you will store it locally. You are to prepare a two paragraph document -- tell about yourself, your job, sports teams -- whatever you want. In addition to making up two paragraphs, put your name in the indicated spot. The marked up document should look like this:
Print your document as it appears in the editor and as it appears when viewed using a Web client, and turn in both. Also answer these questions:<html> <head> <title>My first HTML document</title> </head> <body> <h2> put your name here </h2> <hr /> <p> text of your first paragraph </p> <p> text of your second paragraph </p> </body> </html>