Learning HTML5 & CSS3

About

There are many elements in formatting text. This first one is to use the <blockquote> tag.   Similarly, there is also used for denoting quotes, the <q> tag.   Blockquote will be used first and is immediately below.

Example 1:

There are some cool things that can be done with CSS for presentations on the internet.   lorem ipsum dolor sit amet parturient suspendisse in blandit donec platea convallis mi libero neque curae vestibulum odio justo dolor diam ridiculus habitant curabitur semper vulputate nostra integer sociosqu velit pede mauris pede magna phasellus neque nunc. lorem ipsum dolor sit amet parturient suspendisse in blandit donec platea convallis mi libero neque curae vestibulum odio justo dolor diam.

Example 2:

Then there is the need sometimes to enclosed a small amount of text with quotation marks.   I have liked the curly quotes which are created with &ldquo; and &rdquo for double or changing the d to a s for single quotes.   But, ah! I just used the <q> tag, with a color of red, to draw attention to the interchanging the “d” with a ‘s’.   So much to learn, so many ways of doing things.

My Uses of the Four All Important Selectors

Descendent
Example 1 above: Selector used #selectors h4
Child
Example 2 above: Selector used h4<span
Adjacent Sibling Selector
Selector used #selectors dt*dd within this list

The above definition list of selectors with the h3 heading are inside a div with an id of “selectors” to prevent messing with the list work done in the previous lesson.   I must keep this in mind as I have really messed up a previous done page with the CSS for a newer page.

Changing Colors with Span and Classes — Cool!