Website Design CSS

February 10, 2012 by Dorian
Filed under: Website Design 

The advantage of using of CSS is that you control the whole layout of a website from one place. Information about style, size and so on. And so on. Is storing in one file and when you want to change for example size or colour of any text you do it in the file style.css. To get file.html to hook up with thestyle.css you want to create a linkage to the file in your HTML file.

1. Basic information about CSS Layouts:

- CSS stands for Cascading Style Sheets
- Similar to HTML code
- Link style.css to file.html with this syntax placed in your file.html :

- The link line must be in the header section of your file.html
- If you place this link in each file.html files and change style.css you change the design
in ALL file.html where you have placed the link above.

2. CSS Layouts Syntax

A CSS rule has 2 main parts: a selector, and a few declarations:

Selector Declaration

H1 color:blue; font-size: 12px;} Property :Value Property Value
3.Video manuals - step by step.

All this is describe in this tutorial video - extremely straightforward to understand on a basic level.
Frequently the basic and principals is critical to take new steps in web design.This kind of function saves a big of time when you wish to change any form of your house site. Earlier you have to make changes on each page but with this function you simply need to switch in one place - only in the file style.css file .

HTML and CSS files are, quite literally, just text files. You do not need any special software to create them, although a pleasant code editor is beneficial. You can create these files on any computer and use your internet browser to preview them during development. You can think about HTML as the content of your website: a handful of text and references to images wrapped up in tags. CSS is the planning of your internet site. It targets the tags you wrote in your HTML and applies the style. Keeping these 2 things separate is key to quality site design.

Article provider on howtotube.com - video help files for fast and easy learning instead of reading info.