<h1>Heading 1</h1>

    <p>This is a Paragraph: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.     </p>
    <h2>Heading 2</h2>
 
    <ul>
      <li>Unordered List Item 1</li>
      <li>Unordered List Item 2</li>
      <li>Unordered List Item 2</li>
    </ul>


body {
/*   This will obviously color the background */
  background: #494949;
/*   This will color the text */
  color: #e5e5e5;
}

h1 {
/*   heading 1 background will be blue */
  background: #313e59;
}

h2 {
/*   heading 2 background will be green */
  background: #4a7046;
}

p {
/*   paragraph background will be darker grey */
  background: #2d2d2d;
}

ul {
/*   the background of the unordered list will be brown */
  background: #845e4f;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.