Wednesday, October 17, 2012

CSS - Cascadding Style Sheet

Hello students,

What is CSS? if you still remember what you have learn from web authoring subject or you have an experience in HTML tag... i'm sure that you can explain and understand the uses of CSS.

CSS??
  • CSS stands for Cascading Style Sheets
  • Styles define how to display HTML elements
  • Styles were added to HTML 4.0 to solve a problem
  • External Style Sheets can save a lot of work
  • External Style Sheets are stored in CSS files
Types of CSS?
  • Internal Styles are defined in the head section of html tag section of a given web page. 

  • Inline Styles are defined within the HTML markup of a particular page element.
  • External Styles are defined on the External Style Sheet, which is linked to the web page(s).

Refer notes below to strengthen your knowlegde;

http://www.w3schools.com/cssref/default.asp
http://www.csstypeset.com/
http://www.expression-web-tutorial.com/Types_CSS_Styles.html

Ok, that all for today =) All the best!


No comments:

Post a Comment

Question 1: Introduction to Variable

Based on code below, create a dynamic program that solve problem below: Source Code: #include <iostream> using na...