Creating a world where we will only be after the solving of problems and not finding a way to blame some one for the the problem. Welcome to the new world and a new era
HOPE OF THE WORLD
We are the hope of the world because what ever step we take today.whatever thing we do will have it efect on the coming generationbecause we are the hope of tomorow and in our hands lies the hope of our fore generation
Wednesday, November 24, 2010
CCS tutorial
CSS Introduction
It is time to take your web designing skills to the next level with Cascading Style Sheets (CSS). They are a way to control the look and feel of your HTML documents in an organized and efficient manner. With CSS you will be able to:
* Add new looks to your old HTML
* Completely restyle a web site with only a few changes to your CSS code
* Use the "style" you create on any webpage you wish!
A stylesheet can, and should be, completely separate from your HTML documents. When you have mastered CSS and HTML, you will be able to separate your web site's design and formatting (CSS) from the content (HTML).
Intended Audience
Before you begin the CSS Tutorial we suggest that you check to see you meet the following recommendations:
* You have used HTML in the past
* You know the basic HTML tags and vocabulary.
* You want to be a better web designer!
If you said no to one of the above, we recommend that you check out our HTML Tutorial before taking on CSS.
When you are ready, continue the tutorial to learn about the basic form of CSS and where you should place your CSS code.
CSS Selector
CSS selectors are the heart and soul of CSS. They define which HTML elements you are going to be manipulating with CSS code and you should have a solid understanding of them when you are finished with this tutorial. Luckily for you, they are pretty simple to comprehend!
CSS Selector: Where It Fits In
In a typical CSS statement you have the following:
* SELECTOR { PROPERTY: VALUE }
"Property" is the CSS element you wish to manipulate and "VALUE" represents the value of the specified property.
CSS Selector Name
The selector name creates a direct relationship with the HTML tag you want to edit. If you wanted to change the way a paragraph tag behaved, the CSS code would look like:
* p { PROPERTY: VALUE }
The above example is a template that you can use whenever you are manipulating the paragraph HTML element. In the next lessons, we will not only teach where to place your CSS, but why and where you should use CSS as well.
Internal CSS
Cascading Style Sheets come in three flavors: internal, external, and inline. We will cover internal and external, as they are the only flavors a designer should utilize. In this lesson, we cover the basics of the easier type, internal. When using internal CSS, you must add a new tag,
Your page's content!