Logo Background RSS

» CSS

  • CASCADING STYLE SHEETS TUTORIAL PART 3 OF 3
    By Radz Nguyen on September 24th, 2009 | No Comments Comments
    In part 2 of the tutorial we broke down the major sections of HTML on the page and established separation using DIV tags with unique ID’s attached to them: <div id=”navigation”> … </div> <div id=”centerDoc”> … </div> Using DIV’s (to position the major page sections) is the alternate method to what most people use: tables. I ...
  • CASCADING STYLE SHEETS TUTORIAL PART 2 OF 3
    By Radz Nguyen on September 24th, 2009 | No Comments Comments

    Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1310

    Warning: shuffle() expects parameter 1 to be array, null given in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1311

    Warning: Invalid argument supplied for foreach() in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1312
    In Part 1 we created a classic two-column layout with left side navigation using CSS and only a few types of HTML tags. Part 1 presented the code for the page and explained what HTML tags we were going to use. Now we will look at the actual HTML code used so far and the CSS. Our page so far is really very simple. As you may already know, all the content (text, images, Flash etc) that the user see...
  • CASCADING STYLE SHEETS TUTORIAL PART 1
    By Radz Nguyen on September 24th, 2009 | No Comments Comments

    Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1310

    Warning: shuffle() expects parameter 1 to be array, null given in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1311

    Warning: Invalid argument supplied for foreach() in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1312
    In this CSS tutorial I will not be able to show you everything there is about CSS, but you will learn how to create nice looking CSS styled web pages. After completing this tutorial, you should have enough information to explore CSS and web design even further. You can download the CSS and HTML files we build in this tutorial: CSS files You can check out what the page should look like here: C...
  • AN INTRODUCTION TO CASCADING STYLE SHEETS
    By Radz Nguyen on September 24th, 2009 | No Comments Comments

    Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1310

    Warning: shuffle() expects parameter 1 to be array, null given in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1311

    Warning: Invalid argument supplied for foreach() in /home/ghosts/public_html/wp-content/plugins/simple-tags/inc/client.php on line 1312
    CSS is the acronym for: ‘Cascading Style Sheets’. CSS is an extension to basic HTML that allows you to style your web pages. An example of a style change would be to make words bold. In standard HTML you would use the <b> tag like so: <b>make me bold</b> This works fine, and there is nothing wrong with it per se, except that now if you wanted to say change all your text that...