COOP Class

by Jon Barnes

HTML

<!DOCTYPE html>
<html>

  <head>
    <title>The BEST WEBSITE EVER MADE</title>

  </head>

  <body>
    <!-- content here -->
    HELLO CLASS
    <!-- 
    <H1>
        Heading
    </H1>
    -->

    <!-- 
    <H2>
        Secondary Heading
    </H2>
    -->

    <!-- 
    <H3>
      tertiary Heading 
      headings go from h1 to h3.
    </H3>-->

    <!--
      <p>This is a paragraph</p>
    -->

    <!--
    <div>
   
       <img src="https://ih0.redbubble.net/image.174366815.8482/flat,800x800,075,f.u1.jpg" alt="poop" width="200" height="200" />
    
    </div>
      -->
   <!--   
    <div id="text">
      <strong>strong</strong>
      <s>strikethrough</s>
      <u>underline</u>
      <blockquote>block quote</blockquote>
    </div>
    -->

    Good Bye class
  </body>

</html>

CSS

body {
   background-color: #057a6b;
   /*background-image: url("https://ih0.redbubble.net/image.174366815.8482/flat,800x800,075,f.u1.jpg");*/
 }

 /*
p {
  text-align: center;
}
*/

/*
#text {
  margin-top: 20px;
  width: 400px;
  margin-left: auto ;
  margin-right: auto ;
}
*/