vote up 4 vote down star
2

Where should I point someone to learn the basics of HTML/CSS? I personally got my start from HTMLGoodies way back in the day, but while I thank Ken Burns for getting me going, I'm loathed to send someone out to that site nowadays as I think it's dated.

Obviously there are many sites out there that cumulatively contain all the information needed, but where to send someone new who you don't want to scare off?


edit:

I honestly thought I'd been missing something by not having used w3schools.com, but I see that within three pages of the tutorial (both html and xhtml) they use <b></b>. Damned shame they're not encouraging semantics.

Anyone know something that gets people off on the right foot?

flag

53% accept rate
> they use <b></b> this really simplify learning html by this. If they user some id,classes and reference to css stylesheets from the very beginning this can cause difficulties in understanding of base concepts of html. – sergdev Dec 17 '08 at 20:11
what's wrong with <b></b>? – koldfyre Dec 17 '08 at 20:19
@koldfyre - bold implies aesthetics rather than content. strong implies that this should be read with conviction. same goes for em (emphasis) and the italics tag. Think about how a screen reader should read italics or bold, and you'll see why they're a no-no. – Steve Perks Dec 17 '08 at 20:26
@sergdev - I agree that they shouldn't be introducing styles, but they shouldn't be encouraging bold as an element when it's one of the most miss used elements in the book. Bold is a presentational element and semantics/standards drives us to separate content and presentation for good reason. – Steve Perks Dec 17 '08 at 20:40
I'm annoyed with systems that translate <i> to <em>, though. <i> is semantic: it's used for many grammatical constructions, such as ship names, book titles, and the discussion of words as words: Compare "Socrates was a Greek philosopher" with "<i>Socrates</i> has eight letters". I'm not so sure whether bold tags are semantically accurate. – timothy.green.name yesterday

13 Answers

vote up 1 vote down check

Exactly, I personally started off on HTMLGoodies, also. I think tizag.com is more updated.

link|flag
I'm just a few pages in and can clearly see that this is the one I was looking for. Simple, friendly, and just like HTMLGoodies but without the clutter they introduced over the years. Still the dreaded bold tag though – Steve Perks Dec 17 '08 at 20:23
vote up 11 vote down

w3schools.com It also has XML, XSL, PHP, and all of the rest, so when you're looking for something real simple that you haven't done in 10 years, it's there as well.[1]

link|flag
Seriously - I've been in the game for years, and only ever used w3schools.com as a search result page. I'll run through it and see if there's anything that will scare my friend away. – Steve Perks Dec 17 '08 at 19:46
@jwmiller5 - sorry, I'm taking your 'correct answer' off you in hope for a site with more consideration for semantics. – Steve Perks Dec 17 '08 at 20:07
vote up 7 vote down

I can't believe how many people are answering with w3schools. I couldn't recommend enough that people never EVER mention this place again. It is a terrible resource.

A few good places:

http://alistapart.com

http://www.quirksmode.org/

http://www.thinkvitamin.com/

Not complete, but alistapart.com is required reading for any web developer we hire.

link|flag
@Mike - I fully agree with the list as further reading, but I'm explicitly looking for places to send a complete newbee who I don't want to feel intimidated. HTML is easy, but you need to get over that first hump. – Steve Perks Dec 17 '08 at 20:29
+1 for A List Apart – Redbeard 0x0A Dec 17 '08 at 23:01
And +1 for whatever books Jeffrey Zeldman writes. – Mike Dec 17 '08 at 23:22
vote up 6 vote down

Also, never underestimate the power of reading the source on well-written websites.

link|flag
Didn't deserve a negative rep for that. Reading other people's markup would be my homework assignment. – Steve Perks Dec 17 '08 at 20:14
Some people learn best by looking at something that works, take it apart and then put it back together remixed. However, not everybody learns that way, just keep it in mind. – Redbeard 0x0A Dec 17 '08 at 23:02
vote up 3 vote down

Read this book (Designing with Web Standards by Zeldman)

link|flag
I find Zeldman to be more for people already in the game, although you shouldn't be in the game without having read it. – Steve Perks Dec 17 '08 at 20:15
vote up 2 vote down

If you are really interested in teaching a newcomer HTML, IMO, http://www.w3schools.com/ is the best.

I would not let the use of the odd depreciated tag (like <b>) detract from what is an extremely well written site.

The try it yourself feature is excellent. Furthermore, it is very easy to unlearn stuff like align='center', <i> and <b> once you get the hang of CSS etc.

Most of us started off with the b tag and it wasn't a huge shock to have to start using strong instead :D

That said http://www.tizag.com/ is pretty good too

link|flag
vote up 2 vote down

HtmlDog has a good set of guides for beginners, intermediate and advanced users. It also has useful references for all things HTML & CSS.

link|flag
vote up 1 vote down

W3 Schools

link|flag
vote up 1 vote down

look no further than http://www.w3schools.com/

link|flag
looks like 2 others beat me to the "post your answer" button... – mmattax Dec 17 '08 at 19:43
I was about to do that too!! – Jennifer Dec 17 '08 at 19:44
vote up 1 vote down

I really like yourHTMLsource. Quirksmode and AlistApart are great. And Ajaxian is more advanced and wide resource of things. I began on w3schools, however soon this site became the one I avoid the most.

link|flag
vote up 0 vote down

I can't believe that people here are recommending W3Schools. That's the last place I would recommend anyone to go.

The one place I would recommend the user heading to is SitePoint. A lot of the articles there are aimed at advanced users, although the sheer quality of the forum and the beginner articles are too good to pass. I would also agree with Mike's recommendations as places to send a complete novice.

As far as getting the practical skill, the one thing I would recommend is opening up a text editor or a good IDE in text-editor mode and just writing a website to see what happens. Head to the Open Source Web Design page and see how others have created basic layouts, then apply that skill to your own.

link|flag
vote up 0 vote down

I can't believe that people here are recommending W3Schools. That's the last place I would recommend anyone to go. For me its a great... Maybe isn't "the" reference website, but is a very good and practical cheatsheat about html and stuff...

The htmldom section is one of the best for me...

link|flag
If you want a reference then the best place is easily the specification itself. Once you get a feel for the structure and you've read and tested enough source code from other sites you're more than capable of writing your own. – EnderMB Dec 19 '08 at 5:47
vote up 0 vote down

If you speak German, the best Site for learning HTML is: (add http here)selfhtml(add dot here)org

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.