Net Technologies:4
CSS
Cascading Style Sheets (CSS) is a simple mechanism for adding style (e.g., fonts, colors, spacing) to Web documents.
CSS is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation, including elements such as the layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple pages to share formatting, and reduce complexity and repetition in the structural content
CSS gives us precise control of the layout of many documents from one single style sheet. We can then use that style sheet to apply different layouts to different media-types (screen, print, etc.).
CSS is looks like this: h1, h2, h2 { font-family: Arial; color: blue; text-align: center; } In this example, the html elements h1, h2, and h3 will be displayed with the Arial font-family, the color blue and will be aligned center.
More from the Net Technologies series:
Related Posts:
Tags: Cascading Style Sheets, Internet Technologies, website
Posted:
Wednesday, December 15th, 2010 at 4:11 am
Filed Under: CSS, HTML, Web Design/Development.
Follow by: RSS 2.0
[...] « Net Technologies:2 Net Technologies:4 [...]