Bonus Assignment: Time Capsule

Create a web page to share what you have learned about succeeding in High School.

  1. Start a new document in Notepad and save as timecapsule.html.
  2. Use the following example as a model to begin your own web page.
  3. Please include at least five list points and include at least two other types of tags or color codes.
  4. Model HTML Code
    <html>
      <head>
        <title>John's Time Capsule</title>
      </head>
      <body>
        <center><h1>John's Time Capsule</h1></center>
    
        <p>Hi.  My name is John Hoffman.  I want to tell you about 
        what I have learned...</p>
        
        <ol>
          <li>Once I turned in homework late and only got half
            credit.  Turn it in on time!</li>
          <li>Follow directions carefully.</li>
    
        </ol>
      </body>
    </html>