<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 {
/* the url for the background image */
background: url(https://ncoughlin.com/wp-content/uploads/2015/03/forrest-collage-1_1080p1.jpg);
background-repeat: no-repeat;
background-size: cover;
/* text color */
color: #e5e5e5;
}
h1, h2 {
/* semi-transparent */
background: rgba(50, 63, 88, .8);
}
p {
/* paragraph background will be darker grey */
background: #2d2d2d;
}
ul {
/* the background of the unordered list will be brown */
background: #845e4f;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.