Open Homework
-Check homework
-2 webpages for an artist of your choosing
Ira Glass on Storytelling
http://vimeo.com/24715531
Review:
CSS styles can be applied to general page elements, CSS Classes, and specific items:img { border: 0px; }
this applies to every image tag in the HTML document
.classy { color: red; }
this applies to a CSS class called classy.
<span class="classy" > Example of a paragraph with classy text </p>
#about { background-color: #ccc; }
This rule applies to just the specific element that has an ID value of about:
<p id="about"> About stuff goes here </p>
http://www.csszengarden.com/