Short Introduction to RDFa, OWL and Microformats [LINK] 1

Posted by Justin Reagor Sun, 09 Dec 2007 18:29:00 GMT

I just started following the OntologyOnline project, and reading David Decraene’s blog.

He has an excellent post on Embedding OWL-RDFS syntax in XHTML with RDFa. It serves as a great introduction into RDFa, OWL, Microformats and “Web 3.0”. It also dives into the possibilities as to why these technologies haven’t gained much popularity in the online community. As well as whats higher up along the Microformats food chain.

I don’t like to LINK often, but when I do its for articles like this! I am on a constant battle trying to relate my web standards friends, with little Microformats knowledge, into why we need a more semantic web (and why we need to start considering these technologies).

CSS/XHTML vs. tables and crap

Posted by Colin A. Bartlett Wed, 24 Oct 2007 01:35:00 GMT

While beginning a new project today, I quickly discovered that the HTML and CSS files supplied by the designer were clearly auto-generated from a program like Dreamweaver.

It soon became apparent that dealing with nearly half a dozen nested tables and a mess of a CSS (with some of the same font declarations repeated 10 times) was going to be a nightmare.

I undertook the task of rebuiding in real CSS with semantic markup and XHTML. It’s taken about 3 hours for the rough cut. I still have some tweaking for IE and such but basically, it’s done. It’s clearly, far easier to read now. But I’ll let the numbers speak for themselves:

Before:
  • 371 lines
  • 13,213 chrs
After:
  • 279 lines
  • 7,173 chrs

That’s nearly a 45% reduction in the number of characters. One place in particular went from looking like this in the Firebug Inspect window:

 div < td < tr < tbody < table < td < tr < tbody < table < div <
td < tr < tbody < td < tr < tbody < table < td < tr < table < body < html 
To this:
 div < div < body < html