Learning Html

Discussion in 'HTML & Website Design' started by jakawakaman, Aug 1, 2007.

  1. #1
    What is the fastest, easiest way to learn html.
    Help would be great!
    Thanks
    -Chris
     
    jakawakaman, Aug 1, 2007 IP
  2. chinkara

    chinkara Banned

    Messages:
    71
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    use dreamweaver. You will learn it fast. thats what i have done
     
    chinkara, Aug 1, 2007 IP
  3. eadkung

    eadkung Active Member

    Messages:
    148
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    58
    #3
    start from basics
    -> get familiar with basic html tags eg. <table>,<p>,<br>...
    -> using dreamweaver, create a simple webpage in "design view mode"
    -> learning tags that DW generate for you, you'll see how each tag works.
    -> try something harder like <form>, CSS, javascript. if you have anytroubles, ask someone in this forums :)
     
    eadkung, Aug 1, 2007 IP
  4. nmx

    nmx Active Member

    Messages:
    557
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #4
    htmldog.com, it's the best site to use imo. Teaches you valid xhtml, and CSS! Using it you can have HTML basics down in a few hours quite easily.

    Good luck,

    -nmx
     
    nmx, Aug 1, 2007 IP
  5. PHPGator

    PHPGator Banned

    Messages:
    4,437
    Likes Received:
    133
    Best Answers:
    0
    Trophy Points:
    260
    #5
    IMO <table> is a more advanced tag that you would use in HTML. Tables are not the easiest thing to understand, however, once you learn them and play with them a bit it is almost like riding a bike. You won't really understand why they are so difficult for some.

    My advice would be to jump in head-first... think of a website you want to build. Then start building it. Maybe trying using HTML only first because designing in photoshop is a whole different thing you may want to learn later on... get familiar with <b>, <br>, <p>, etc.

    When you get stuck, you know you have a lot of helpful people here to help you out regardless of how "dumb" you may think the question may be. :)
     
    PHPGator, Aug 1, 2007 IP
  6. Digitalguy

    Digitalguy Active Member

    Messages:
    545
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    60
    #6
    do a search on html in youtube. you will find some nice video tutorials there.
     
    Digitalguy, Aug 1, 2007 IP
  7. uniqueasitis

    uniqueasitis Peon

    Messages:
    661
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #7
    HTML is VERY easy.

    Just remember this and you know HTML!

    1. HTML has tags. When you want an effect you enclose text in the tags.
    2. Tags consist of an end tag and a start tag. Both tags comprise of open < and close >. The only difference is that the end tag has \ in it and start tag doesn't.
    3. The letter between the tag < and > represents an "action." For example the tag <p> is a start tag because it does not have \ and the letter between which is p. It signifys that the text you enclose between the tags will be treated by the browser as a paragraph. Similarly, look at the <b> tag. The "b" tells the browser to make the text between the <b> start tag and </b> end tag dark colored.
    4. You begin every page with <html> and end it with yes you guessed it </html>
    5. Now you make the whole page using tags

    Now that you know html all you need to do is study how tags work. Try a tutorial at tizag.com. Then get an html reference and use the tags to make your webpage. Simple!
     
    uniqueasitis, Aug 1, 2007 IP
  8. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Hi Chris,

    I strongly suggest you pick up a copy of Build Your Own Web Site The Right Way Using HTML & CSS by Ian Lloyd. Seriously. Unlike WISIWYG editors which will barf up bloated sloppy code you won't understand, or Web sites that claim to teach you the "right way" to do things (especially ones put together by people with rudimentary coding knowledge) a book has to go through a rigorous fact checking, editorial and review process before it even GETS to the technical editor staff at the publishing company for another round of the same (fact checking, editorial and review processes). And then the book has to pass muster with them before it's even permitted to be sent to the printers for publication.

    Granted, books are static (once published) and can become dated, which is why reputable books (such as the one I suggested) often provide Web sites that have either errata, strong healthy communities with knowledgable people ready and willing to help you (no beer runs required), or both, and are routinely updated every few years as the standards, technologies and techniques (best practices) change.

    Once you have learned the fundamentals (which will provide you with the strong foundation you need) then feel free to move on to the Web and look for tutorials on how to implement specific features that you want to include in your sites.
     
    Dan Schulz, Aug 1, 2007 IP
  9. Exeneva

    Exeneva Peon

    Messages:
    87
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I recommend that you first edit premade free templates to get a general feel of how HTML works. Try to stick with xHTML since it's cleaner.
     
    Exeneva, Aug 1, 2007 IP
  10. pfek

    pfek Member

    Messages:
    98
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    45
    #10
    I would suggest you to learn HTML while keeping in mind that the new standard is xhtml. Everything is evolving towards it so it's a good thing to learn at the beginning.
     
    pfek, Aug 1, 2007 IP
  11. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Actually, markup is evolving towards HTML 5 (the W3C was forced to get involved when the WHATWG threatened to render the W3C obsolete). HTML 5 had a lot of promise, but unfortunately is now nothing more than a joke.
     
    Dan Schulz, Aug 1, 2007 IP
  12. Dr Small

    Dr Small Guest

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    Go to w3schools.com/tags and learn the tags and how to apply them. Then open your favorite text editor and make a html webpage and keep doing different stuff. You will eventually learn html that way. ;)

    Dr Small
     
    Dr Small, Aug 2, 2007 IP
  13. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #13
    That is not the best resource for learning HTML - there are a LOT of errors on their pages.
     
    Dan Schulz, Aug 2, 2007 IP
  14. runningthingz

    runningthingz Active Member

    Messages:
    396
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    58
    #14
    Find a simple looking site. Save the page with the images. Open it in Dreamweaver and rebuilt the site on your own. Use the working version as reference. Make sure you delete things out and test the site to see what certain elements control or do.
     
    runningthingz, Aug 2, 2007 IP
  15. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #15
    All of which won't do a bit of good if you don't know how to use the code in the first place, which is why I suggested a good book. You can't do much without the fundamentals. :)
     
    Dan Schulz, Aug 2, 2007 IP
  16. afkersz

    afkersz Well-Known Member

    Messages:
    615
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    120
    #16
    I just bought Build Your Own Web Site The Right Way Using HTML & CSS book and hope it is good! I think it is a good price and a good way to learn Html and CSS. Thanks Dan Schulz for recommending this book!
     
    afkersz, Aug 2, 2007 IP
  17. designer007

    designer007 Well-Known Member

    Messages:
    245
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #17
    At first do it in notepad and save as.html . If you are trying to use WYSIWYG editors at the begining itself, then it will be difficuilt for you to correct the bugs or broken tags in future. So, first learn it with notepad coding, then use an editor like 'Dreamweaver'.
    All the best !
     
    designer007, Aug 2, 2007 IP
  18. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #18
    I bought the book last week and will be picking it up today. And this weekend we're having coding nights (my husband and our friend are programmers)!!
     
    Stomme poes, Aug 3, 2007 IP
  19. Aaron111

    Aaron111 Well-Known Member

    Messages:
    4,301
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    185
    #19
    I agree Dw is best have you seen any free toturials?? chinkara??:rolleyes:
     
    Aaron111, Aug 3, 2007 IP
  20. Aaron111

    Aaron111 Well-Known Member

    Messages:
    4,301
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    185
    #20
    I somewhat disagree Dan DW is official and you take out the crappy code as well have seen fresh toturials online I mean free ones??:rolleyes:
     
    Aaron111, Aug 3, 2007 IP