Exercise 6: CSS Three Column Liquid Layout

PART 3 of Exercise 6!

*THIS BLOG IS A PLACEHOLDER FOR A LINK TO THE CSS LIQUID LAYOUT WEBPAGE*

*WASN’T ABLE TO DO THIS ASSIGNMENT*

Exercise 6: CSS

PART 1:
 
Through examples, explain the difference between external style sheet, internal style sheet and inline style, when is it better to use one over the other?
Style sheets are a form of separation of presentation and content for web design. The mark-up of a webpage in a style sheet contains the pages semantic content and structure; it does not define its visual layout (style).
The three ways of inserting a style sheet are by using either an 1). external style sheet, an 2). internal style sheet, or an 3). inline style.
External Style Sheet: ESS allows us to change the look of an entire Web site by changing one file. It is ideal to use when the style is to be applied to many pages. When wanting to change the look by changing just one file, each page must link to the style sheet using the <link>… tag. The <link> tag goes inside the ‘head’ section:
More