Create two sample HTML pages that include a DOCTYPE statement and a title. Include at least one example of each of the following:

a standard paragraph of text
a left-justified headline (like a title)
a centered headline (like a title)
a sub headline (like a subtitle)
a section of colored text (not all text, just a segment or headline)
an image (from a URL)
an image (from a local source)
an image with a size adjustment (maintaining the aspect ratio)
hyperlinks
a hyperlinked image
a split line (empty element)
one page that has a background color

Extra Credit:
Include a sample of Italic text.
Include an email address link that does not spell out the address on the web page (HINT: mailto).
Create a hyperlink to a local page on your computer.

Respuesta :

Answer:

<!DOCTYPE html>

 <html>

   <head>

     <title>Hello</title>

   </head>

     <body style="background-color:pink;">

<h1 style="text-align:center">The Centered Headline</h1>

<h1 style="text-align:left">Left</h1>

         <h2>Sub headline</h2>

 <p>This is the paragraph.</p>

<h1 style="color:purple;">colored word</h1>

<img src="flower.jpeg" alt="Flower" width="460" height="345">

htmlimg2.jpeg

     </body>

 </html>

Explanation: