1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to learn HTML CSS!

Discussion in 'HTML & Website Design' started by chronocommando, Jul 16, 2009.

  1. myst_dg

    myst_dg Active Member

    Messages:
    224
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    58
    #61
    Try tutsplus.com, it's one of my favorite.
     
    myst_dg, Aug 5, 2009 IP
  2. SportsFan0834

    SportsFan0834 Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #62
    SportsFan0834, Aug 5, 2009 IP
  3. runspace

    runspace Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #63
    A lot of methodical practice after you learn the basics. Start with simple improvements on what you already know and build from there. Once you have the fundamentals down, try creating a site of your own with CSS. Then take a look at other sites CSS and see how they do it and see if you can recreate it on your own. I hope you enjoy your new found CSS knowledge!
     
    runspace, Aug 5, 2009 IP
  4. euwern

    euwern Peon

    Messages:
    45
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #64
    go to http://www.w3schools.com/ they have very good short notes about Html and CSs.. of course you wont be a pro after learning all the snytax..it will give you a brief understanding on how to work with html and css.. and you can start to change code in html and css.

    Html and css is easy to learn because it you do not need any addition tool to learn them..all you need is a Notepad and a browser.. :) save them as .html or .htm then double click on the file saved..you can see your result immediately..
     
    euwern, Aug 5, 2009 IP
  5. autap6

    autap6 Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #65
    I started by writing some html code in notepad, save the file on my desktop with an html extension and open it in my browser.
    Then I added tags one by one and each time I refreshed the page in the browser.
     
    autap6, Aug 6, 2009 IP
  6. linkexchange3.maria

    linkexchange3.maria Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #66
    i want learn about div


    maria
     
    linkexchange3.maria, Aug 6, 2009 IP
  7. autap6

    autap6 Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #67
    Here is a small easy example:

    In notepad make one file (name it e.g. div.html) with this:

    <html>
    <head>
    <style>
    #header p { text-align: center}
    p {text-align: left}
    </style>
    </head>
    <body>
    <div id="header">
    <p>Paragraph 1.</p>
    </div>
    <p>Paragraph 2</p>
    </body>
    </html>

    Then open the file in your browser.

    Paragraph 1 is centered because it's in the div while paragraph2 is not.

    I hope it helps :)
     
    autap6, Aug 6, 2009 IP
  8. wwwbryan

    wwwbryan Well-Known Member

    Messages:
    181
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    103
    #68
    The best way to learn is start using website builders and trying to make cool things happen on your site that require a little amount of source editing. Then try building from scratch. HTML is pretty easy, All it basically is, is tags.
     
    wwwbryan, Aug 6, 2009 IP