SUMMARY

SUMMARY 3

Topic 1: The three embedded styles for CSS.

The first style is inline styles which uses the HTML style and is linked from a CSS style sheet. The second style is embedded styles that have the CSS placed within the head portion of the HTML. The last style is a linked style where you link your style sheet in the HTML pages in a single line of code with the head tag.

Topic 2: The importance of UI Pseudo-Classes

There are four states that a link can be in. There is an actual link for someone to access. It is visited to remind the user that they have already been to that link. There is a hover action to show the user that there is indeed a link that is clickable to the user. The last one is the active which is the moment between when the user has clicked and released.

Topic 3: How to determine when to use an ID and a Class DIV.

An ID is used to specify a part in the page and only ID names of each can not be used more than once on a page. Therefore the ID has to have a different value. While class is used for multiple elements on the page and this will help compound elements and change at the same time per your rule.