vote up 5 vote down star
1

I am taking a peek at diveintohtml5. It seems nice and interesting, but I am puzzled.

In the nineties, at the time when Netscape was the browser and html was HTML2 or HTML3, there were a lot of tags: address, cite, code... Most of them are unused as of today, probably even obsolete.

html5 introduces tags to express "semantic meaning" to the tag itself. This is all fun and games but I see something very strange in this approach. Technically, the semantic can be very open ended. html5 has tags for article, time, navigation bars, footer. Why shouldn't it contain tags for post icon, author's place, name and surname, or whatever else you want to assign specific semantics to (I'm confident <rant> and <nsfw> would be very important tags): ? I thought xml was the strategy to assign semantics to stuff. Nothing forbids you to put a xml chunk under a xhtml div element, and assign a stylesheet to it so to style it properly, or to delegate to the proper viewer the handling of that namespace (for example, when handling rss or svg).

In conclusion, I don't understand the reason behind this extensions focused towards semantics, when it's clear that semantic is a very broad topic, which is guaranteed to require a potentially infinite amount of semantic tags. Since I am pretty sure there are clever people at w3c, I think I'm wrong, but I'd like to know why.

flag

80% accept rate
2  
address, cite and code are all fully valid HTML5 elements, although cite's meaning has been modified. – Alohci Nov 1 at 0:24
To loosely summarize the answers given: It depends on your definition of 'semantics'. – Boldewyn Nov 18 at 16:07

6 Answers

vote up 5 vote down check

Why are tags for article, time, navigation bars, footer useful?

because they facilitate parsing for text processing tools like google.

It's nothing about semantic(at least in 'broad' meaning). Instead they just say: here is the body of page(most important text part) and there is the navbar full of links. With such an approach you can easily extract just what you need.

link|flag
vote up 0 vote down

I too hate the way that W3C is going with their specs. There are many things that I don't like, and this "semantics" fad is one of them. (Others include taking forever to complete their specs and leaving too many important details for the browsers to implement as they choose)

Most of all I don't like it because it makes my work as a web developer more difficult. I often have to make a choice whether to make the webpage "semantically correct" or "visually/aesthetically pleasing". The latter wins of course, because that is what the users want, but as a result validations start failing and the whole thing gets quite non-semantic (tables for layout and other things).

Another issue at which I frown is that they have officialy declared that the "class" attribute is for semantics, but then they used it for visual presentation selectors in CSS.

Bottom line - DON'T MIX SEMANTICS AND VISUAL REPRESENTATION. If you use some mechanism for describing semantics (like tag names, attribute values, or what not else), then don't use it for funcional/visual purposes and vice versa.

If I would design HTML, I would simply add an attribute "semantic" which could (like the "class" attribute) be added to any tag. Then there would be a number of predefined values like all those headers/footers/articles/quotes/etc.

Tags would define functionality. Basically you could reduce HTML tags to just a handful, like "div", "table/tr/td", "a", "img", "form", "input" and "select". I probably missed a few but this is the bulk. Visual styling would be accomplished through CSS.

This way the three areas - semantics, visual representation, and functionality - would be completely independent and wouldn't clash in real life solutions.

Of course, I don't think W3C is interested in practical solutions...

link|flag
vote up 0 vote down

Look at it from the angle of trying to make statements either about the page, or about objects referenced from the page. If you see a <footer> tag, all you can say is "stuff in here is a footer" and pass it by. As such, adding custom tags is not as generic a solution as adding attributes and allowing people to use their own choice of URIs to specify predicates and optionally values - RDFa wins hands-down because you can express any triple-statement you like from RDF in a page, one way or another.

link|flag
vote up 0 vote down

I disagree with adding extra tags. If detailed vocabulary were actually import then there could be a different tag name for every word in the dictionary. Additional tags names are not helpful as they may communicate additional meaning to humans, but do nothing to facilitate machine parsing of the language. This is why I don't like the "semantic" tags for HTML5 as I believe this to be slippery slope to providing a vocabulary too complex while only providing a weak solution to a problem not fully addressed.

In my opinion markup language structure data as much as describe it in a tree diagram form. Through parsing of the structure and proper use of semantic conventions, such as RDFa, context can be leveraged to provide specific meaning to otherwise generic tag names. In such as case excessive vocabulary need not exist and structurally redundant tag names, such as footer and aside, could be eliminated. The final objective is to make content faster and more accurate to interpret by both humans and machines simultaneously while using as little code as possible to achieve that result. How that solution is lesser important, except to HTML5.

link|flag
vote up 1 vote down

I just want to address one part of your question. You say:

In the nineties, at the time when Netscape was the browser and html was HTML2 or HTML3, there were a lot of tags: address, cite, code... Most of them are unused as of today, probably even obsolete.

There are a great deal of tags to choose from in html, but the lack of usage does not imply that they are obsolete. In particular the header tags <h1>, etc, and <ul>, <ol> are used to join items into lists in a way I consider semantic. Many people may not use tags semantically, but the effort to create microformats is an ongoing continuation of the idea you consider an artifact of the 1990s. Efforts to make the semantic web be a winner keeps going, despite full-text search and link analysis (in the form of Google) being the winner as far as how to find and understand the web.

It would be great to see an updated version of Google's Web Stats which show "html as she is spoke." But you are right that many tags are underused.

Whether html5 will be successful is an open and interesting question, but the tags you describe as obsolete didn't go anywhere, they were there in HTML 4.01 and xhtml. HTML5 seems to be an effort to solidify what is useful in tags. In the end if html5 gets support in browsers and makes the job of web developers easier, it will succeed. xhtml2 failed because it roundly failed to gain adoption in browsers and did nothing to make the job of web page makers easier. The forces working on html5 seem keenly aware of the failure of xhtml2, and I think are avoiding having html5 suffer a similar fate.

link|flag
1  
xhtml2 failure had nothing to do with browser support. It failed because it was neither forward nor backward compatible and the W3C did not want to have a radically different competing format to the more popular HTML 5 regardless of any weaknesses or strengths inherent to HTML5. – austin cheney Nov 1 at 13:09
vote up 2 vote down

There is already a lot of semantics in HTML markup in the forms of classes and IDs, of which there is a (near) infinite amount of possibilities of, And everyone has their own way of handling these semantics. One of the goals of HTML5 is to try to bring some structure to this. you will still be able to extend the semantics of tags with classes and ids. It will also most likely make things easier for search engines.

link|flag
That's the fact. you should not assign or infer semantics from classes or ids (at least according to the diveintohtml5 section about semantics) – Stefano Borini Oct 30 at 15:29
why not? where else are you going to have any kind of semantic markup (in current HTML)? – GSto Oct 30 at 15:40
well, I think it's because the id is well, an identifier, and the class is an attribution for visual representation. – Stefano Borini Oct 30 at 15:52
semantics in the form of machine readable markup can be added in the form of classes and ids -- see the way it's done at en.wikipedia.org/wiki/HCard - this is markup that a search engine, or browser, or browser plugin can consume. – artlung Oct 30 at 19:08
Technically, there's no such thing as near infinite. – hasen j Nov 18 at 16:07

Your Answer

Get an OpenID
or

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