how to get started css editor?

Discussion in 'CSS' started by bizlife, Sep 28, 2009.

  1. #1
    hi everyone

    the css is realtive simple to udnerstand how it works and learn it .

    the thing i dont know if i want develope a web site page with this css

    how to edit the html page without tables ?

    with tables ? but no color just white background and also what about the style letlers,fonts etc.


    what i should edit in the html file page ?
    regards truly
    paul
     
    bizlife, Sep 28, 2009 IP
  2. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You just link to the CSS file from the head of your document like this is your webpage:

    
    <html>
    <head>
    <link rel="stylesheet" type="text/css" href="style.css" />
    </head>
    <body>
    <div id="container">
    Some Text
    </div>
    </body>
    </html>
    
    Code (markup):
    Then you'd have a seperate file called style.css where all of your styles would go for example style.css could look like:

    
    #container{
    color:red; background: blue;
    }
    
    Code (markup):
    This would then make the container DIV in your page have a blue background, and all the text inside it would be of the colour red.
     
    wd_2k6, Sep 28, 2009 IP
  3. bizlife

    bizlife Member

    Messages:
    28
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #3
    well thaks for the quck reply but what about the tables ?

    as i would need a web pagelike that

    top table divided in two tables one for the logo one for the banner rotator

    then it will be anothner table divided in three coluns

    one is for adveritising left side
    then the central is for the body of the page
    right side other things

    bottom a table two rows
    for the banner exchange or webring​

    how to ad where to create he tables in the web poage editor ?

    i dotn give any color then?
    thanks
    paul
     
    bizlife, Sep 28, 2009 IP