CSS

CSS Lesson 3 – Linking CSS Files To Your Documents

Style Sheets in External Files Link To define an external Style Sheet to be used to format your HTML you use place a Link element in the Head area of the HTML file. The basic tag would be: <LINK REL=stylesheet HREF=”mystyle.css”> Where HREF tells the location and file name and REL indicates the file is […]

CSS Lesson 2 – Understanding The Cascading Part Of CSS Cascading Style Sheets

What is Cascading? When applying styles to the elements <tags> of your website it is important to understand the hierarchy of how Cascading Styles are applied to elements that are inside of elements. In standard HTML all pages will start and end with a <html> element tag and the content of the page will be […]

CSS Lesson 1 – Introduction To CSS For Webdesign

Introduction to CSS CSS is a set of page markup definitions that can be applied to HTML documents to define how pages are rendered. This addition to the HTML tag set can be applied by Authors internally in each HTML document or they can reside in a separate server side file that is referenced and […]