HTML advanced books?

liunx

Guest
Has anyone bought this book?<br />
<br />
If so is it any good, as it weighs a ton and dont wanna buy it unless really need to :)<br />
<br />
Cheers<br />
<br />
Amazon book - search (<!-- m --><a class="postlink" href="http://www.amazon.co.uk/exec/obidos/ASIN/1861005334/qid=1042494735/sr=1-4/ref=sr_1_2_4/202-5684511-8778226">http://www.amazon.co.uk/exec/obidos/ASI ... 11-8778226</a><!-- m -->)<!--content-->http://www.w3.org/TR/html401/<br />
Complete, accurate, and free.<!--content-->I suggest you don't buy a book for HTML. Buy one for JavaScript after you learn HTML. I learned HTML without purchasing a book. If you need tutorials/help, just email me at <!-- e --><a href="mailto:[email protected]">[email protected]</a><!-- e -->. I can teach you, if you like.<!--content-->I know pretty much all HTML, just wanted something a bit more advanced, and noticed that book in waterstones (it has good design tips and stuff like that, as well as a bit on javascript(swear word, in this house!)<br />
<br />
Just wanted somerthing that lists which ALL tags and what they can be combined with, no website seems to do that without spliting it over 50 odd pages!<!--content-->I know pretty much all HTML, just wanted something a bit more advanced<br />
After you've taken a look at the HTML Spec (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html401/">http://www.w3.org/TR/html401/</a><!-- m -->), they're plenty to move on to (that's free, and more accurate and complete than any book). CSS (<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/">http://www.w3.org/TR/REC-CSS2/</a><!-- m -->), XHTML (<!-- m --><a class="postlink" href="http://www.w3.org/TR/xhtml1/">http://www.w3.org/TR/xhtml1/</a><!-- m -->), JavaScript (<!-- m --><a class="postlink" href="http://developer.netscape.com/docs/manuals/javascript.html">http://developer.netscape.com/docs/manu ... cript.html</a><!-- m -->)<br />
<br />
Just wanted somerthing that lists which ALL tags and what they can be combined with<br />
If that list is all you want then just see the HTML spec's Index of Elements (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html401/index/elements.html">http://www.w3.org/TR/html401/index/elements.html</a><!-- m -->) and Index of Attributes (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html401/index/attributes.html">http://www.w3.org/TR/html401/index/attributes.html</a><!-- m -->).<br />
<br />
no website seems to do that without spliting it over 50 odd pages!<br />
You could always just look for the thinest book and smallest Web site, but you'll just end up learning less. Some people say they find the size of the HTML spec daunting, so they look elsewhere and buy book after book. And in the end they've probably ended up reading more, and probably learned less also.<!--content-->There is a great HTML reference book that you can see. It's called Mastering HTML 4.0, and I forgot the Web site name, but I'll post it tomorrow.<!--content-->Mastering 4.0 was written in 1997, so it's basically 6 years old. I would hunt down a good HTML 4.01 book, if not just go for a good XHTML one. I would push towards a good XHTML one at this point, since that's where web design is going. My personal reference book at this time is HTML 4.01 Programmer's Reference. This being if one wanted to get a book when the official reference can just be Download <!--more-->ed. It's nice to have a book and to not have to print out the W3C specs.<!--content-->http://archive.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimerAll.html<br />
<br />
Try that... use it as a reference...<!--content-->Jona<br />
<!-- m --><a class="postlink" href="http://archive.ncsa.uiuc.edu/Genera...LPrimerAll.html">http://archive.ncsa.uiuc.edu/Genera...LPrimerAll.html</a><!-- m --> <br />
Try that... use it as a reference...<br />
One of the reasons the specification is preferred is because most other sources are incomplete and/or incorrect. This is another site to be added to that list. While most of it is incomplete or out of date, there are some sections that are just wrong. For example the minimal HTML document.<!--content-->An HTML Web page can be simply:<br />
<br />
<br />
<HTML><br />
Your text goes here<br />
</HTML><br />
<br />
<br />
As a matter of fact, you can even use:<br />
<br />
<br />
Your text here, just save this as an HTML document, and you're good to go. It will display in the browser just fine!<br />
<br />
<br />
However, keeping all of the necessary information in the page is important. If you're just trying to put text on there, that is not advertised, you're fine without having to add anything more than <HTML>. But if you're doing a corporate Web site, such as, <!-- w --><a class="postlink" href="http://www.microsoft.com">www.microsoft.com</a><!-- w -->, you'll want to put all of those Meta Tags and <HEAD> stuff etc., in there.<!--content-->No, your simply wrong about that. It might display in a browser but so will plain text. That doesn't make it HTML. <br />
<br />
For HTML 3.2 you need at a minimum:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Some Title</title><br />
Some Text<br />
<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-html32">http://www.w3.org/TR/REC-html32</a><!-- m --><br />
<br />
<br />
For HTML 4.01 Transitional you need at a minimum:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<br />
"http://www.w3.org/TR/html4/loose.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Some Title</title><br />
Some Text<br />
<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/global.html#h-7.2">http://www.w3.org/TR/html4/struct/global.html#h-7.2</a><!-- m --><br />
<br />
<br />
For HTML 4.01 Strict you need at a minimum:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Some Title</title><br />
<p>Some Text</p><br />
<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/global.html#h-7.2">http://www.w3.org/TR/html4/struct/global.html#h-7.2</a><!-- m --><br />
<br />
<br />
For XHTML 1.0 Transitional you need at a minimum:<br />
<br />
<!DOCTYPE html<br />
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br />
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br />
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/><br />
<title>Some Title</title><br />
</head><br />
<body><br />
Some Text<br />
</body><br />
</html><br />
<br />
<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/xhtml1/#docconf">http://www.w3.org/TR/xhtml1/#docconf</a><!-- m --><br />
<br />
<br />
For XHTML 1.0 Strict you need at a minimum:<br />
<br />
<!DOCTYPE html<br />
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"<br />
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><br />
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/><br />
<title>Some Title</title><br />
</head><br />
<body><br />
<p>Some Text</p><br />
</body><br />
</html><br />
<br />
<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/xhtml1/#docconf">http://www.w3.org/TR/xhtml1/#docconf</a><!-- m --><!--content-->Check you XHTML examples Charles, multiple <html> tags snuck into them :)<!--content-->My Goode Wyffe keeps telling me that I need glasses. Pernaps she's right.<!--content-->
 
Back
Top