elements , and all
elements.
Know about floating an element. Whenever you float an element in a stylesheet,
you must give a width:
.floatingStuff {
width: 20%;
color: orange;
float: right;
border: 2px dashed green;
}
Then in my HTML I would have:
This paragraph floats to the right.
The style ensures that this second paragraph
begins *after* the first paragraph is completely drawn.
Know who invented the World Wide Web. Hint: It was not Clyde Tolson.
You will have one stylesheet with errors in it, and you have to correct the errors.
Know how to link an external stylesheet:
Please remember that an external stylesheet *never* has any HTML elements in it at all.
It doesn't even have HTML comments.
/* stylesheet comment; use these in your external stylesheet */