Lesson 2: HTML and CSS Fundamentals (3/3)
<!--
Exercise III - Add CSS
Time: 30 Minutes
Add HTML and CSS to create a webpage for a business (real or imagined). The following are the minimum requirements for your page; feel free to add more HTML or CSS if you have additional time.
HTML requirements:
* three divs
* a span and a paragraph
* two headers
* a link
* an image
* a list
* a class (which should be put on multiple elements)
* two ids
CSS requirements:
* a tag selector
* a class selector
* an id selector
* use the following attributes: height, width, border, color, background-color, font-size
* add margin and padding to two different elements
Stretch Goal: Use online resources to learn a little about the CSS properties of 'display' and 'position'. Incorporate them into your page.
-->
<div>
<h1>Very Fantastic Business</h1>
<p>Our product is great. You should buy it.</p>
</div>
h1 {
}
p {
}