* CSS styles can be applied to general page elements, CSS Classes, and specific items:
img { border: solid #000 10px; }
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>
#about { background-color: #ccc; }
This rule applies to just the specific element that has an ID value of about:
<div id="about"> About stuff goes here </div>
HOMEWORK:
Start your 1st project:
- familiarize yourself with HTML & CSS, start planning the artist's website
- do some research
- complete 2 webpages with at least 1 image
- create a working link between those 2 pages
*Note: Always put all of your images, HTML pages, and CSS in 1 folder
Please email me with any questions: rtsmith@towson.edu