* Take Attendance *
For home work, you were supposed to...
Get started on "Project A"
Today: More CSS · Div Tags · IDs & Classes
Dreamweaver ยท hotspots & rollover images
What we did last class:
In the head of your html code, put a link to a separate .css file:
<link href="365.css" rel="stylesheet" type="text/css" />
This is an example of an External Style Sheet
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 classy red text </span>