Announcement
Collapse
No announcement yet.
My way to LEARN HTML/CSS
Collapse
X
-
Tags: None
-
-
Originally posted by Nightfire
Is it a joke?
Comment
-
well, I can see you have good intentions, and I can also see where it would help people who know NOTHING about html understand how it's structured. It's not a great tutorial to bring up in a coding forum, though
Anyway, just a reminder for the rest...Posting Guidelines
# 1.1) Always be respectful and polite when posting- There is absolutely no excuse to be rude, confrontational, or hostile when posting on codingforum.net. This is a place where web programmers come together to solve problems, not create them.
-Rich
Comment
-
Originally posted by rmedek
well, I can see you have good intentions, and I can also see where it would help people who know NOTHING about html understand how it's structured. It's not a great tutorial to bring up in a coding forum, though
Anyway, just a reminder for the rest...
Come on, guys, we're supposed to be offering helpful criticism...
-Rich
Comment
-
Ok, for help, you have css which is far too bloated. Add everything into the same tag which is needed, it's just teaching ppl to create a new style for each tag about 10 billion times.
doctype should be above the <html> tag
no charset defined,
wrong tags for html4 (ie using xhtml tags instead)
no quotes around some attribute
Comment
-
Originally posted by Nightfire
wrong tags for html4 (ie using xhtml tags instead)
Comment
-
Originally posted by Nightfire
<link rel="stylesheet" type="text/css" href="style.css" />
For html it is just
<link rel="stylesheet" type="text/css" href="style.css" >
No backslash
Should look at the validator to help
http://validator.w3.org
Comment
-
Helpful Criticism: Centered text which takes up the entire screen is the single worst way to display it. I find it almost impossible to read through your content at my normal pace.
Also, if you're going to collect all your favourite resources to share with others, make it a little less default
I take no responsibility for the above nonsense.
Left Justified
Comment
Comment