<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>The Elementary Standards</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/" />
<modified>2008-03-19T16:44:31Z</modified>
<tagline>A Compendium of Web Standards, HTML, CSS and other things of interest or note.</tagline>
<id>tag:www.elementary-group-standards.com,2008://1</id>
<generator url="http://www.movabletype.org/" version="3.2">Movable Type</generator>
<copyright>Copyright (c) 2008, Sean Fraser</copyright>
<entry>
<title>How Things Change</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/css/how-things-change.html" />
<modified>2008-03-19T16:44:31Z</modified>
<issued>2008-02-29T16:26:02Z</issued>
<id>tag:www.elementary-group-standards.com,2008://1.203</id>
<created>2008-02-29T16:26:02Z</created>
<summary type="text/plain"><![CDATA[Or, Whatever became of the CSS Tutorial?
I believe it is an appropriate time for a CSS viral marketing campaign by the Web Standards community.
The novelty and excitement of CSS passed last year. Everyone&#8217;s waiting for CSS3 modules. Google any CSS [keyword] and most of the names I read several years ago are gone from the first ten pages for tutorials or explanations or examples of best practices, Web Standards CSS coding. And, those that remain are decent but not ones I would suggest to CSS beginners nor intermediate designers.
What about continuing fundamental Education?
Did you ever meet someone who knew some CSS and decided that absolute positioning was the ideal method for constructing a three column layout? Though their CSS and HyperText Markup Language construction may be odd.
Whilst in Austin, several programmers cited several sources that made me cringe. Even though everyone with which you discuss CSS may know about CSS, not everyone knows how to use it. The programmers answer for CSS was something like,


&#60;div&#62;
&#60;table&#62;
&#60;tr&#62;
&#60;td&#62;&#60;div&#62;&#60;/div&#62;&#60;/td&#62;&#60;td&#62;&#60;div&#62;&#60;/div&#62;&#60;/td&#62;&#60;td&#62;&#60;div&#62;&#60;/div&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;/div&#62;


It&#8217;s a simple three column layout, isn&#8217;t it.
Basic, fundament CSS tutorials are usually missing from search results. I searched Google for representative sites but I couldn&#8217;t find&#8212;in those particular phrases&#8212;the Little Boxes tutorials: so I did Little Boxes and found it. However, how many developers (and, programmers) do not know of The Noodle Incident.
Ingo Chao&#8217;s Authoritative &#8220;On having layout &mdash; the concept of hasLayout in IE/Win&#8221;
See below and see if you would recommend any of the pages returned in search results:

http://www.google.com/search?q=css+haslayout = css hasLayout
http://www.google.com/search?q=css+has+layout = css has layout
http://www.google.com/search?q=css+layout = css layout
http://www.google.com/search?q=css+tutorial

EchoEcho CSS Tutorial

CSS allows you to customize the lists that can be made with HTML.
The good news is that there are many powerful properties for doing so.
The bad news is that Netscape and Internet Explorer often support these properties in different ways. Both browsers have limitations in their support of list styles.
Netscape browsers only let you add the list CSS to &#60;LI&#62; tags - not just any tag.
Internet Explorer&#8217;s support of CSS with relation to lists is only fully supported for browsers on the Windows platform.[Elementary emphasis.]

Microsoft Developer Network (MSDN) Tutorial
How to Manipulate Text Effects in Response to Mouse Events


&#60;STYLE&#62;
    BODY  { background-color: black;color: gold;font: 24pt sans-serif; }
    UL.ActivateTextEffect  { color: orange;letter-spacing: 2; }
&#60;/STYLE&#62;


How to Fly Text in DHTML

This article demonstrates both ways to implement flying text through the marquee element and through Cascading Style Sheets (CSS) positioning. To better understand positioning in Dynamic HTML (DHTML), as well as the CSS object model in Internet Explorer 4.0



&#60;MARQUEE WIDTH=&#34;700&#34; STYLE=&#34;position:absolute; top: 180&#34; 
    ... DIRECTION=&#34;left&#34;&#62;
&#60;UL&#62;
    &#60;LI class=yellow>Use the Document Object Model (DOM)&#60;br&#62;
    to create interactive documents.
&#60;/UL&#62;
&#60;/MARQUEE&#62;


http://www.google.com/search?q=css+layout+tutorial
Little Boxes and CSS Layout Techniques: for Fun and Profit]]><br /><br /><a href="http://www.elementary-group-standards.com/css/how-things-change.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>CSS</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, Whatever became of the <abbr title="Cascading Style Sheet">CSS</abbr> Tutorial?</h4>
<p class="article-first-sentence">I believe it is an appropriate time for a <abbr>CSS</abbr> <a href="http://en.wikipedia.org/wiki/Viral_marketing" title="Read Wikipedia article">viral marketing</a> campaign by the Web Standards community.</p>
<p>The novelty and excitement of <abbr>CSS</abbr> passed last year. Everyone&#8217;s waiting for <abbr>CSS3</abbr> modules. Google any <abbr>CSS</abbr> [keyword] and most of the names I read several years ago are gone from the first ten pages for tutorials or explanations or examples of best practices, Web Standards <abbr>CSS</abbr> coding. And, those that remain are decent but not ones I would suggest to <abbr>CSS</abbr> beginners nor intermediate designers.</p>
<p>What about continuing fundamental Education?</p>
<p>Did you ever meet someone who knew some <abbr>CSS</abbr> and decided that absolute positioning was the ideal method for constructing a three column layout? Though their <abbr>CSS</abbr> and <abbr>HyperText Markup Language</abbr> construction may be odd.</p>
<p>Whilst in Austin, several programmers cited several sources that made me cringe. Even though everyone with which you discuss <abbr>CSS</abbr> may know about <abbr>CSS</abbr>, not everyone knows how to use it. The programmers answer for <abbr>CSS</abbr> was something like,</p>
<pre>
<code>
&#60;div&#62;
&#60;table&#62;
&#60;tr&#62;
&#60;td&#62;&#60;div&#62;&#60;/div&#62;&#60;/td&#62;&#60;td&#62;&#60;div&#62;&#60;/div&#62;&#60;/td&#62;&#60;td&#62;&#60;div&#62;&#60;/div&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;
&#60;/div&#62;
</code>
</pre>
<p>It&#8217;s a simple three column layout, isn&#8217;t it.</p>
<p>Basic, fundament <abbr>CSS</abbr> tutorials are usually missing from search results. I searched Google for representative sites but I couldn&#8217;t find&#8212;in those particular phrases&#8212;the <a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html" title="View those recommended tutorials from 2001">Little Boxes tutorials</a>: so I did Little Boxes and found it. However, how many developers (and, programmers) do not know of <a href="http://www.thenoodleincident.com/tutorials/css/index.html" title="View CSS Panic Guide">The Noodle Incident</a>.</p>
<p><a href="http://www.satzansatz.de/cssd/onhavinglayout.html" title="View article">Ingo Chao&#8217;s Authoritative &#8220;On having layout &mdash; the concept of hasLayout in IE/Win&#8221;</a></p>
<p>See below and see if you would recommend any of the pages returned in search results:</p>
<ul>
<li><a href="http://www.google.com/search?q=css+haslayout" title="View Google's search results"><code>http://www.google.com/search?q=css+haslayout</code></a> = css hasLayout</li>
<li><a href="http://www.google.com/search?q=css+has+layout" title="View Google's search results"><code>http://www.google.com/search?q=css+has+layout</code></a> = css has layout</li>
<li><a href="http://www.google.com/search?q=css+layout" title="View Google's search results"><code>http://www.google.com/search?q=css+layout</code></a> = css layout</li>
<li><a href="http://www.google.com/search?q=css+tutorial" title="View Google search results"><code>http://www.google.com/search?q=css+tutorial</code></a></li>
</ul>
<p>EchoEcho CSS Tutorial</p>
<blockquote>
<p><abbr>CSS</abbr> allows you to customize the lists that can be made with <abbr title="HyperText Markup Lanaguage">HTML</abbr>.</p>
<p>The good news is that there are many powerful properties for doing so.</p>
<p>The bad news is that Netscape and Internet Explorer often support these properties in different ways. Both browsers have limitations in their support of list styles.</p>
<p>Netscape browsers only let you add the list <abbr>CSS</abbr> to <code>&#60;LI&#62;</code> tags - not just any tag.</p>
<p>Internet Explorer&#8217;s support of <abbr>CSS</abbr> with relation to lists <span class="oblique">is only fully supported for browsers on the Windows platform.</span><span class="note">[Elementary emphasis.]</span></p>
</blockquote>
<p>Microsoft Developer Network (MSDN) Tutorial</p>
<p>How to Manipulate Text Effects in Response to Mouse Events</p>
<pre>
<code>
&#60;STYLE&#62;
    BODY  { background-color: black;color: gold;font: 24pt sans-serif; }
    UL.ActivateTextEffect  { color: orange;letter-spacing: 2; }
&#60;/STYLE&#62;
</code>
</pre>
<p>How to Fly Text in <abbr title="Dynamic HyperText Markup Language">DHTML</abbr></p>
<blockquote>
<p>This article demonstrates both ways to implement flying text through the marquee element and through Cascading Style Sheets (CSS) positioning. To better understand positioning in Dynamic HTML (DHTML), as well as the CSS object model in Internet Explorer 4.0</p>
</blockquote>
<pre>
<code>
&#60;MARQUEE WIDTH=&#34;700&#34; STYLE=&#34;position:absolute; top: 180&#34; 
    ... DIRECTION=&#34;left&#34;&#62;
&#60;UL&#62;
    &#60;LI class=yellow>Use the Document Object Model (DOM)&#60;br&#62;
    to create interactive documents.
&#60;/UL&#62;
&#60;/MARQUEE&#62;
</code>
</pre>
<p><a href="http://www.google.com/search?q=css+layout+tutorial" title="View Google's search results"><code>http://www.google.com/search?q=css+layout+tutorial</code></a></p>
<p><a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html" title="Read a very informative CSS tutorial">Little Boxes</a> and <a href="http://www.glish.com/css/" title="View the exceptional CSS article">CSS Layout Techniques: for Fun and Profit</a></p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/css/how-things-change.html">Continued.</a>
</content>
</entry>
<entry>
<title>That was Interesting</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/errata/that-was-interesting.html" />
<modified>2008-02-28T16:58:20Z</modified>
<issued>2008-02-28T16:54:41Z</issued>
<id>tag:www.elementary-group-standards.com,2008://1.202</id>
<created>2008-02-28T16:54:41Z</created>
<summary type="text/plain">Or, What Six Months?
I didn&amp;#8217;t go Malarkey. I didn&amp;#8217;t relinquish Web Standards from disillusionment. I didn&amp;#8217;t relinquish Web Standards from development of a SharePoint 2007 site during those six months. It was nothing exceptional. Chance circumstances beyond control. Things arose.<br /><br /><a href="http://www.elementary-group-standards.com/errata/that-was-interesting.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Errata</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, What Six Months?</h4>
<p class="article-first-sentence">I didn&#8217;t go Malarkey. I didn&#8217;t relinquish Web Standards from disillusionment. I didn&#8217;t relinquish Web Standards from development of a SharePoint 2007 site during those six months. It was nothing exceptional. Chance circumstances beyond control. Things arose.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/errata/that-was-interesting.html">Continued.</a>
</content>
</entry>
<entry>
<title>What are the Good Restaurants in Austin?</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/errata/good-austin-restaurants.html" />
<modified>2007-09-25T02:41:11Z</modified>
<issued>2007-09-25T02:27:28Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.201</id>
<created>2007-09-25T02:27:28Z</created>
<summary type="text/plain">I&apos;ll be in Austin, Texas for two weeks for client work and was wondering if anyone could recommend a good restaurant or cafe or dive.
Dives are good.
<br /><br /><a href="http://www.elementary-group-standards.com/errata/good-austin-restaurants.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Errata</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">I'll be in Austin, Texas for two weeks for client work and was wondering if anyone could recommend a good restaurant or cafe or dive.</p>
<p>Dives are good.</p>
]]>
<br /><br /><a href="http://www.elementary-group-standards.com/errata/good-austin-restaurants.html">Continued.</a>
</content>
</entry>
<entry>
<title>The Definition Title</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/html/the-definition-title.html" />
<modified>2007-09-18T16:37:59Z</modified>
<issued>2007-09-18T16:31:50Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.200</id>
<created>2007-09-18T16:31:50Z</created>
<summary type="text/plain">Or, How to Reinvent an HTML Phrase Element for the Benefit of Universality
Most of my readers have a better understanding of formal English language than that which I use. I&amp;#8217;ve used redundant statements in articles or cited Wikipedia pages for larger references when making vague allusions. However, one thing has always bothered me: inline definitions. I do not generally follow links and I&apos;d wager that most site visitors do not either. I wanted an inline definition rollover for Universality which for me includes editorial content which includes slang, vague references and allusions that may be understood by all.
This was the first pun I learned but did not understand until my father explained it to me:

&amp;#8220;Two old ladies went for a tramp in the woods but he got away.&amp;#8221;

Most readers will understand that &amp;#8220;tramp&amp;#8221; means a hobo or&amp;#8212;these days&amp;#8212;a homeless gent. However, the joke arises when &amp;#8220;tramp&amp;#8221; is first understood to be walking or promenading.
And, that&amp;#8217;s where my frustration rose. Web pages offer interactive elements. And, I wanted a simple mechanism to display inline definition.
HTML 4.01 Specification, 9 Text, 9.2 Structured text, 9.2.1 Phrase elements: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, and ACRONYM 

&amp;#8220;DFN: Indicates that this is the defining instance of the enclosed term.&amp;#8221;

That would work.
And, the funny thing about the &amp;#8220;title&amp;#8221; attribute: it works on all HTML elements even if not all browsers acknowledge it.<br /><br /><a href="http://www.elementary-group-standards.com/html/the-definition-title.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>HTML</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, How to Reinvent an HTML Phrase Element for the Benefit of Universality</h4>
<p class="article-first-sentence">Most of my readers have a better understanding of formal English language than that which I use. I&#8217;ve used redundant statements in articles or cited Wikipedia pages for larger references when making vague allusions. However, one thing has always bothered me: inline definitions. I do not generally follow links and I'd wager that most site visitors do not either. I wanted an inline definition rollover for Universality which for me includes editorial content which includes slang, vague references and allusions that may be understood by all.</p>
<p>This was the first pun I learned but did not understand until my father explained it to me:</p>
<blockquote cite="Bennett Cerf">
<p>&#8220;Two old ladies went for a tramp in the woods but he got away.&#8221;</p>
</blockquote>
<p>Most readers will understand that &#8220;tramp&#8221; means a hobo or&#8212;these days&#8212;a homeless gent. However, the joke arises when &#8220;<span class="oblique">tramp</span>&#8221; is first understood to be walking or promenading.</p>
<p>And, that&#8217;s where my frustration rose. Web pages offer interactive elements. And, I wanted a simple mechanism to display inline definition.</p>
<p>HTML 4.01 Specification, 9 Text, 9.2 Structured text, <a href="http://www.w3.org/TR/html401/struct/text.html#edef-DFN" title="View W3C HTML specification">9.2.1 Phrase elements: <code>EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, and ACRONYM</code></a></p> 
<blockquote cite="http://www.w3.org/TR/html401/struct/text.html#edef-DFN">
<p>&#8220;<abbr title="definition">DFN</abbr>: Indicates that this is the defining instance of the enclosed term.&#8221;</p>
</blockquote>
<p>That would work.</p>
<p>And, the funny thing about the &#8220;title&#8221; attribute: it works on all <abbr>HTML</abbr> elements even if not all browsers acknowledge it.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/html/the-definition-title.html">Continued.</a>
</content>
</entry>
<entry>
<title>Shakespeare knew Latin</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/philologia/shakespeare-knew-latin.html" />
<modified>2007-09-16T03:36:20Z</modified>
<issued>2007-09-16T03:18:15Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.199</id>
<created>2007-09-16T03:18:15Z</created>
<summary type="text/plain">Or, How to write Your Own Aphorism,	Maxim or Epigram and hope it becomes a Saw
Knowledge exceeds Man&amp;#8217;s currency.
I wrote that maxim several years ago. It&amp;#8217;s my translation of Job 28:18, &amp;#8220;The price of wisdom is above rubies&amp;#8221;. I write them when I can find dual meanings in the words: currency may either mean coin or paper currency; or, archaically used, it may represent worth.
Yes,&amp;#8212; Anyone can do this.
Read the footnotes of Shakespeare&amp;#8217;s entries in Bartlett&amp;#8217;s Familiar Quotations and you will notice that many of his famous lines were taken from Antiquity. Read Bartlett&amp;#8217;s footnote&amp;#8217;s and you will notice that many famous aphorisms have been taken from Antiquity.<br /><br /><a href="http://www.elementary-group-standards.com/philologia/shakespeare-knew-latin.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Philologia</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, How to write Your Own Aphorism,	Maxim or Epigram and hope it becomes a Saw</h4>
<p class="article-first-sentence">Knowledge exceeds Man&#8217;s currency.</p>
<p>I wrote that <a href="http://en.wikipedia.org/wiki/Maxim_(saying)" title="View Wikipedia page">maxim</a> several years ago. It&#8217;s my translation of Job 28:18, &#8220;The price of wisdom is above rubies&#8221;. I write them when I can find dual meanings in the words: currency may either mean coin or paper currency; or, archaically used, it may represent worth.</p>
<p>Yes,&#8212; Anyone can do this.</p>
<p>Read the footnotes of Shakespeare&#8217;s entries in Bartlett&#8217;s Familiar Quotations and you will notice that many of his famous lines were taken from Antiquity. Read Bartlett&#8217;s footnote&#8217;s and you will notice that many famous aphorisms have been taken from Antiquity.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/philologia/shakespeare-knew-latin.html">Continued.</a>
</content>
</entry>
<entry>
<title>What Web Standards Crisis?</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/web-standards/what-web-standards-crisis.html" />
<modified>2007-10-21T20:29:58Z</modified>
<issued>2007-09-08T21:18:55Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.198</id>
<created>2007-09-08T21:18:55Z</created>
<summary type="text/plain">Or, What W3C Web Standards HTML 5 Crisis at a glacial Circus pace do you Mean?
I was tempted to write this reply during the week in which the crises were announced but found it unnecessary. All crises on the internet have life expectancies measured in days (or, hours). The latest Web Standards Crisis has passed.
I have never&amp;#8212;Ever&amp;#8212;considered myself a Standardista; a Neo-Standardista but not Standardista. My perception of early Web Standards was that of Sans-culottes 
with Molotov cocktails and wishes for Utopia. That hasn&amp;#8217;t changed. The Executive Safety Committee 
has but its mission has not: Universality (which includes Accessibility), separation of structure and presentation. And, the semantic use of markup languages.
The difference between true Web Standards practitioners and Everyone else is mission versus work. Consider this. Practitioners believe in the Mission; agency drones who must meet Accessibility because it is in the client&amp;#8217;s contract requirements view Web Standards as part of the job: nothing more, nothing less. Those who believe in the Web Standards Mission continue to work towards Universality and separation of structure and presentation. Individual practitioners participating in Web Standards continues apace. General-use CSS template houses grow. Content Management Systems (CMS) and desktop editors remain problematic (though each new version improves its semantic markup and CSS use). Template houses for specific business CMS platforms continue the adoption of Web Standards. The final Standardista tenet - Use semantic markup - has grown in acceptance (even when the actual use of semantic markup remains inconsistent).
Those who embraced nascent Web Standards as beneficial&amp;#8212;while others believed it to be Snake Oil Peddlers wares&amp;#8212;continue with the educational processes. Perhaps, this passed crisis was about the glacial pace of the Web Standards educational processes. Perhaps, not. That would reflect poorly on the Web Standards movement itself. It couldn&amp;#8217;t have been about the W3C: Web Standards education should have greater importance than worrying over the methodical pace practiced by the W3C, shouldn&amp;#8217;t it? Why should Web Standards wait for the W3C? It hasn&amp;#8217;t yet.<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/what-web-standards-crisis.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Web Standards</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, What <abbr title="World Wide Web Consortium">W3C</abbr> Web Standards <abbr title="HyperText Markup Lanaguage">HTML</abbr> 5 Crisis at a glacial Circus pace do you Mean?</h4>
<p class="article-first-sentence">I was tempted to write this reply during the week in which the crises were announced but found it unnecessary. All crises on the internet have life expectancies measured in days (or, hours). The latest Web Standards Crisis has passed.</p>
<p>I have never&#8212;Ever&#8212;considered myself a Standardista; a Neo-Standardista but not <span class="oblique">Standardista</span>. My perception of early Web Standards was that of <a href="http://en.wikipedia.org/wiki/Sans-culottes" title="View Wikipedia definition"><span lang="fr">Sans-culottes</span></a> 
with Molotov cocktails and wishes for Utopia. That hasn&#8217;t changed. The <a href="http://en.wikipedia.org/wiki/Committee_of_Public_Safety" title="Read definition used for this metaphor">Executive Safety Committee</a> 
has but its mission has not: Universality (which includes Accessibility), separation of structure and presentation. And, the semantic use of markup languages.</p>
<p>The difference between true Web Standards practitioners and Everyone else is mission versus work. Consider this. Practitioners believe in the Mission; agency drones who must meet Accessibility because it is in the client&#8217;s contract requirements view Web Standards as part of the job: nothing more, nothing less. Those who believe in the Web Standards Mission continue to work towards Universality and separation of structure and presentation. Individual practitioners participating in Web Standards continues apace. General-use <abbr>CSS</abbr> template houses grow. Content Management Systems (CMS) and desktop editors remain problematic (though each new version improves its semantic markup and <abbr>CSS</abbr> use). Template houses for specific business <abbr>CMS</abbr> platforms continue the adoption of Web Standards. The final Standardista tenet - Use semantic markup - has grown in acceptance (even when the actual use of semantic markup remains inconsistent).</p>
<p>Those who embraced nascent Web Standards as beneficial&#8212;while others believed it to be <a href="http://en.wikipedia.org/wiki/Snake_oil_salesman#History" title="Read Wikipedia definition">Snake Oil Peddlers</a> wares&#8212;continue with the educational processes. Perhaps, this passed crisis was about the glacial pace of the Web Standards educational processes. Perhaps, not. That would reflect poorly on the Web Standards movement itself. It couldn&#8217;t have been about the <abbr>W3C</abbr>: Web Standards education should have greater importance than worrying over the methodical pace practiced by the <abbr>W3C</abbr>, shouldn&#8217;t it? Why should Web Standards wait for the <abbr>W3C</abbr>? It hasn&#8217;t yet.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/what-web-standards-crisis.html">Continued.</a>
</content>
</entry>
<entry>
<title>A Simple Web Standards Survey</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/web-standards/web-standards-survey.html" />
<modified>2007-09-03T18:43:53Z</modified>
<issued>2007-09-03T18:38:30Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.197</id>
<created>2007-09-03T18:38:30Z</created>
<summary type="text/plain">Or, What Constitutes Web Standards?
It&amp;#8217;s a simple question.
I see two replies.


Fundamental Goal
Web Standards is Universality (which includes Accessibility) and separation of structure and presentation.


Future Goal
Web Standards is Universality (which includes Accessibility), separation of structure and presentation, valid (X)HTML and CSS, semantic markup and semantic use of ID and Class names for CSS.


Or, has Web Standards become something else?
The mission of Web Standards has not&amp;#8212;Seemingly&amp;#8212;changed. The definition and execution of Web Standards seem to be changing. I was curious to know if anyone else has this impression and thought I would ask by survey.<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/web-standards-survey.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Web Standards</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, What Constitutes Web Standards?</h4>
<p class="article-first-sentence">It&#8217;s a simple question.</p>
<p>I see two replies.</p>
<ol>
<li>
<h5>Fundamental Goal</h5>
<p>Web Standards is Universality (which includes Accessibility) and separation of structure and presentation.</p>
</li>
<li>
<h5>Future Goal</h5>
<p>Web Standards is Universality (which includes Accessibility), separation of structure and presentation, valid <abbr title="Extensible HyperText Markup Lanaguage and/or HyperText Markup Lanaguage">(X)HTML</abbr> and <abbr title="Cascading Style Sheets">CSS</abbr>, semantic markup and semantic use of ID and Class names for <abbr>CSS</abbr>.</p>
</li>
</ol>
<p>Or, has Web Standards become something else?</p>
<p>The mission of Web Standards has not&#8212;Seemingly&#8212;changed. The definition and execution of Web Standards seem to be changing. I was curious to know if anyone else has this impression and thought I would ask by survey.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/web-standards-survey.html">Continued.</a>
</content>
</entry>
<entry>
<title>Who is Jim Flora?</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/typography/who-is-jim-flora.html" />
<modified>2007-08-09T14:59:23Z</modified>
<issued>2007-08-09T14:38:55Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.196</id>
<created>2007-08-09T14:38:55Z</created>
<summary type="text/plain">And, why doesn&amp;#8217;t a type foundry make typefaces of his display type?<br /><br /><a href="http://www.elementary-group-standards.com/typography/who-is-jim-flora.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Typography</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">And, why doesn&#8217;t a type foundry make typefaces of his display type?</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/typography/who-is-jim-flora.html">Continued.</a>
</content>
</entry>
<entry>
<title>How to Overwrite Default CSS Files in Content Management Systems</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/css/how-to-overwrite-default-css-files-with-specificity.html" />
<modified>2007-08-04T23:24:00Z</modified>
<issued>2007-08-04T23:11:09Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.195</id>
<created>2007-08-04T23:11:09Z</created>
<summary type="text/plain">Have you ever worked on a site which was housed in a Content Management System (or, CMS) that was&amp;#8212;Seemingly&amp;#8212;resistant to any style sheet revisions you made? They may have core.css files. They may have individual CSS files strewn through the hierarchal structure. One could locate each style ID and Class name in the HTML, then locate each CSS file and isolate the offending style which required revision and revise it &amp;#8212;if one were so inclined. Or, one could use W3C Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification, 6 Assigning property values, Cascading, and Inheritance, 
	6.4.3 Calculating a selector&amp;#8217;s specificity. [Note: Afterwhich, read CSS: Specificity Wars by Andy Clarke (October 7, 2005) for translation.]
CSS Specificity&amp;#8217;s much simpler.
I had this difficulty where CSS Specificity was required to correct it.
The Set-up went like this. The site was to have two sections: public-facing and private membership. The first CMS was MODx; it was the public-facing section. The second CMS was Moodle; it was the course-by-membership section housed in MODx. The public site was templated and populated with content. The course site was HTML templated (with CSS files included) and forwarded to a third-party agency for Moodle PHP integration into the new HTML templates instead of the Moodle default templates. However, two weeks later, on return of said templates, things were broken: templates, code, styles, PHP.
Sixty hours later.
I corrected the styles and the code and most of the templates (and, those I could not fix were due to my lack of PHP programming skills: I have none). The HTML corrections were tedious because Moodle has an unfathomable number of default templates. The third-party had included new styles into the style sheet, into the HTML as in-line styles; and&amp;#8212;I found&amp;#8212;Moodle had styles included in table elements. Style sheet corrections were simple. CSS Specificity.<br /><br /><a href="http://www.elementary-group-standards.com/css/how-to-overwrite-default-css-files-with-specificity.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>CSS</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">Have you ever worked on a site which was housed in a Content Management System (or, CMS) that was&#8212;Seemingly&#8212;resistant to any style sheet revisions you made? They may have <code>core.css</code> files. They may have individual <abbr title="Cascading Style Sheet">CSS</abbr> files strewn through the hierarchal structure. One could locate each style <abbr>ID</abbr> and Class name in the <abbr title="HyperText Markup Language">HTML</abbr>, then locate each <abbr>CSS</abbr> file and isolate the offending style which required revision and revise it &#8212;if one were so inclined. Or, one could use <abbr>W3C</abbr> Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification, 6 Assigning property values, Cascading, and Inheritance, 
	<a href="http://www.w3.org/TR/CSS21/cascade.html#specificity" title="Read W3C CSS paragraph">6.4.3 Calculating a selector&#8217;s specificity</a>. [Note: Afterwhich, read <a href="http://www.stuffandnonsense.co.uk/archives/css_specificity_wars.html" title="Read clarification article"><abbr>CSS</abbr>: Specificity Wars</a> by Andy Clarke (October 7, 2005) for translation.]</p>
<p><abbr>CSS</abbr> Specificity&#8217;s much simpler.</p>
<p>I had this difficulty where CSS Specificity was required to correct it.</p>
<p>The Set-up went like this. The site was to have two sections: public-facing and private membership. The first <abbr>CMS</abbr> was <a href="http://www.modxcms.com/" title="View site">MODx</a>; it was the public-facing section. The second <abbr>CMS</abbr> was <a href="http://moodle.org/" title="View site">Moodle</a>; it was the course-by-membership section housed in MODx. The public site was templated and populated with content. The course site was <abbr>HTML</abbr> templated (with <abbr>CSS</abbr> files included) and forwarded to a third-party agency for Moodle <abbr>PHP</abbr> integration into the new <abbr>HTML</abbr> templates instead of the Moodle default templates. However, two weeks later, on return of said templates, things were broken: templates, code, styles, <abbr>PHP</abbr>.</p>
<p>Sixty hours later.</p>
<p>I corrected the styles and the code and most of the templates (and, those I could not fix were due to my lack of <abbr>PHP</abbr> programming skills: I have none). The <abbr>HTML</abbr> corrections were tedious because Moodle has an unfathomable number of default templates. The third-party had included new styles into the style sheet, into the <abbr>HTML</abbr> as in-line styles; and&#8212;I found&#8212;Moodle had styles included in <code>table</code> elements. Style sheet corrections were simple. <abbr>CSS</abbr> Specificity.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/css/how-to-overwrite-default-css-files-with-specificity.html">Continued.</a>
</content>
</entry>
<entry>
<title>CSS Typography for an 1855 Broadside</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/typography/css-typography-for-an-1855-broadside.html" />
<modified>2007-07-22T23:48:46Z</modified>
<issued>2007-07-22T22:34:07Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.194</id>
<created>2007-07-22T22:34:07Z</created>
<summary type="text/plain">All things on the world wide web are illusory ephemera.
That was my thought as I was engaged with cascading style sheet amusement one afternoon. I didn&amp;#8217;t wish to collect quality assurance data for the W3C HTML Working Group Top 200 Sites Survey; I did not want to work on the design realignment for this site; and, I did not want to work on a proposed site. I wanted to make something small. Broadsides are perfect for practicing CSS and using type that has fallen on the print-room floor.
I found this broadside whilst perusing through the stacks in the Library of Congress:
	An American Time Capsule: Three Centuries of Broadsides and Other Printed Ephemera<br /><br /><a href="http://www.elementary-group-standards.com/typography/css-typography-for-an-1855-broadside.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Typography</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">All things on the world wide web are illusory ephemera.</p>
<p>That was my thought as I was engaged with cascading style sheet amusement one afternoon. I didn&#8217;t wish to collect quality assurance data for the <abbr title="World Wide Web Consortium">W3C</abbr> <abbr title="HyperText Markup Language">HTML</abbr> Working Group Top 200 Sites Survey; I did not want to work on the design realignment for this site; and, I did not want to work on a proposed site. I wanted to make something small. Broadsides are perfect for practicing <abbr title="Cascading Style Sheets">CSS</abbr> and using type that has fallen on the print-room floor.</p>
<p>I found this broadside whilst perusing through the stacks in the Library of Congress:
	<a href="http://memory.loc.gov/ammem/rbpehtml/pehome.html" title="View Library of Congress Collection">An American Time Capsule: Three Centuries of Broadsides and Other Printed Ephemera</a></p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/typography/css-typography-for-an-1855-broadside.html">Continued.</a>
</content>
</entry>
<entry>
<title>Why Bother?</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/web-standards/why-bother-with-web-standards.html" />
<modified>2007-07-24T05:28:49Z</modified>
<issued>2007-07-17T03:48:53Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.193</id>
<created>2007-07-17T03:48:53Z</created>
<summary type="text/plain">Why bother with web standards adherence when error handling makes web development Life easy. Or, when Large Sites don&amp;#8217;t bother. I&amp;#8217;ve written two articles about it: Error Handling in Browsers make Web Standards Difficult and this article which poses How widely tolerated is ill-formedness in existing browsers?. Those were merely observations. However, we have global examples.
I volunteered to perform a survey of the Top Global 200 Alexa Sites for the W3C&amp;#174; HTML Working Group. I have completed one-third.
The Top 200 Alexa-identified sites were collected on June 25, 2007. The survey baselines the quality of each site at the time of the survey. Validation results collection was begun on June 28, 2007 and continues.
Each site reviewed was from the URL identified by Alexa.
At the time of this survey the Alexa ranking and PR identifying numbers were accurate. Google Page Rank (PR) fluctuates.
The following Validation and Conformance services were employed. All settings were default.

Web Sniffer - View HTTP Request and Response Header
W3C&amp;#174; QA Markup Validation Service
(X)HTML5 Conformance Checking Service Technology Preview
W3C&amp;#174; CSS Validation Service
W3C&amp;#174; Mobile Web Best Practices checker (Beta)
HiSoftware&amp;#174; Cynthia Says&amp;#8482; Portal

The notation (f) designates a fatal or draconian error during validation: processing ceased. Each validation service or conformance checker offered different reasons. N/A or Not Applicable notations are explained in the notes.
Caveats: (X)HTML Conformance Checker identifies attributes that are not currently in the HTML 5 specification as an error but ignored. No effort was made to identify actual errors according to the current version of the specification nor conformance checker. Pages declared HTML 4 are given an error by the conformance checker; this error was removed from the error(s) total.
Thus far, these eleven sites represent the global state of large Content Management System sites and Web Standards.<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/why-bother-with-web-standards.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Web Standards</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">Why bother with web standards adherence when error handling makes web development Life easy. Or, when <span class="oblique">Large Sites</span> don&#8217;t bother. I&#8217;ve written two articles about it: <a href="http://www.elementary-group-standards.com/web-standards/web-standards-and-error-handling.html" title="View Elementary article">Error Handling in Browsers make Web Standards Difficult</a> and this article which poses <a href="http://www.elementary-group-standards.com/web-standards/xhtml-wellformedness-requires-validation.html" title="View Elementary article">How widely tolerated is ill-formedness in existing browsers?</a>. Those were merely observations. However, we have global examples.</p>
<p>I volunteered to perform a survey of the <a href="http://www.alexa.com/site/ds/top_sites?ts_mode=global&amp;lang=none" title="View site">Top Global 200 Alexa Sites</a> for the <a href="http://www.w3.org/html/wg/" title="View site"><abbr>W3C</abbr>&#174; <abbr>HTML</abbr> Working Group</a>. I have completed one-third.</p>
<p>The Top 200 Alexa-identified sites were collected on June 25, 2007. The survey baselines the quality of each site at the time of the survey. Validation results collection was begun on June 28, 2007 and continues.</p>
<p>Each site reviewed was from the URL identified by Alexa.</p>
<p>At the time of this survey the Alexa ranking and <abbr>PR</abbr> identifying numbers were accurate. Google Page Rank (PR) fluctuates.</p>
<p>The following Validation and Conformance services were employed. All settings were default.</p>
<ul>
<li><a href="http://web-sniffer.net/" title="View Service Home Page">Web Sniffer - View <abbr title="HyperText Transfer Protocol">HTTP</abbr> Request and Response Header</a></li>
<li><a href="http://validator.w3.org/" title="View Service Home Page"><abbr>W3C</abbr>&#174; <abbr title="Quality Assurance">QA</abbr> Markup Validation Service</a></li>
<li><a href="http://hsivonen.iki.fi/validator/html5/" title="View Service Home Page"><abbr>(X)HTML5</abbr> Conformance Checking Service Technology Preview</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/" title="View Service Home Page"><abbr>W3C</abbr>&#174; <abbr>CSS</abbr> Validation Service</a></li>
<li><a href="http://validator.w3.org/mobile/" title="View Service Home Page"><abbr>W3C</abbr>&#174; Mobile Web Best Practices checker (Beta)</a></li>
<li><a href="http://www.cynthiasays.com/" title="View Service Home Page">HiSoftware&#174; Cynthia Says&#8482; Portal</a></li>
</ul>
<p>The notation <span class="rouge">(f)</span> designates a fatal or draconian error during validation: processing ceased. Each validation service or conformance checker offered different reasons. N/A or Not Applicable notations are explained in the notes.</p>
<p>Caveats: <abbr title="Extensible HyperText Markup Language/HyperText Markup Language">(X)HTML</abbr> Conformance Checker identifies attributes that are not currently in the <abbr title="HyperText Markup Language">HTML</abbr> 5 specification as an error but ignored. No effort was made to identify <span class="oblique">actual</span> errors according to the current version of the specification nor conformance checker. Pages declared <abbr>HTML</abbr> 4 are given an error by the conformance checker; this error was removed from the error(s) total.</p>
<p>Thus far, these eleven sites represent the global state of large Content Management System sites and Web Standards.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/why-bother-with-web-standards.html">Continued.</a>
</content>
</entry>
<entry>
<title>My Top Six Favourite Music Albums</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/errata/my-top-six-favourite-music-albums.html" />
<modified>2007-07-06T05:47:31Z</modified>
<issued>2007-07-06T05:44:06Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.192</id>
<created>2007-07-06T05:44:06Z</created>
<summary type="text/plain">Roger Johansson wrote My top ten favourite music albums and I was gonna reply but I do not have ten (10) albums. I&amp;#8217;ve got six. Though, I did have a few songs that I have played until they&amp;#8217;ve become white noise.
I found nineteen artists with songs. Six for which all songs on an album I like; twelve artists with songs that have gone white noise; and, one with collected label set plus one song.<br /><br /><a href="http://www.elementary-group-standards.com/errata/my-top-six-favourite-music-albums.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Errata</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">Roger Johansson wrote <a href="http://www.456bereastreet.com/archive/200707/my_top_ten_favourite_music_albums/" title="Read Roger's Article">My top ten favourite music albums</a> and I was gonna reply but I do not have ten (10) albums. I&#8217;ve got six. Though, I did have a few songs that I have played until they&#8217;ve become white noise.</p>
<p>I found nineteen artists with songs. Six for which all songs on an album I like; twelve artists with songs that have gone white noise; and, one with collected label set plus one song.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/errata/my-top-six-favourite-music-albums.html">Continued.</a>
</content>
</entry>
<entry>
<title>Standards Reboot Spring 2007 as Standards Indicator</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/web-standards/standards-reboot-as-web-standards-indicator.html" />
<modified>2008-05-29T15:59:39Z</modified>
<issued>2007-06-28T03:21:43Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.191</id>
<created>2007-06-28T03:21:43Z</created>
<summary type="text/plain">Or, What, Me Validate?
Standards Reboot Spring 2007.
I was generously asked by 
	David Blanchet to judge Standards Reboot Spring 2007. I accepted. [Note: I&amp;#8217;ve previously written about the design aspect in The Lesson of Vitaphone Cartoons as regards Web Design; and, What affect it had on judging Standards Reboot Spring Designs.]
The following regards the HyperText Markup Language, or HTML and CSS, or Cascading Style Sheets of those sites.
I&amp;#8217;ll digress.

The Basics - what you should run on all your web pages

The MarkUp Validator. - Also known as the HTML validator, it helps check Web documents in formats like HTML and XHTML, SVG or MathML.
The CSS Validator - validates CSS stylesheets or documents using CSS stylesheets.
The Link Checker - Checks anchors (hyperlinks) in a HTML/XHTML document. Useful to find broken links, etc.

[Elementary note: Courtesy of the W3C Quality Assurance Tools page.]

The most common (X)HTML and CSS used for the structure of a site should be corrected.<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/standards-reboot-as-web-standards-indicator.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Web Standards</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">Or, What, Me Validate?</h4>
<p class="article-first-sentence">Standards Reboot Spring 2007.</p>
<p>I was generously asked by 
	<a href="http://www.climaxdesigns.com/conversion/" title="View ClimaxDesigns">David Blanchet</a> to judge <a href="http://standardsreboot.com/sites/all/" title="View site">Standards Reboot Spring 2007</a>. I accepted. [Note: I&#8217;ve previously written about the design aspect in <a href="http://www.elementary-group-standards.com/web-design/standards-reboot-spring-2007-design.html" title="Read The Elementary Article">The Lesson of Vitaphone Cartoons as regards Web Design; and, What affect it had on judging Standards Reboot Spring Designs.</a>]
The following regards the HyperText Markup Language, or <abbr>HTML</abbr> and <abbr>CSS</abbr>, or Cascading Style Sheets of those sites.
<p>I&#8217;ll digress.</p>
<blockquote cite="http://www.w3.org/QA/Tools/">
<p class="this-should-be">The Basics - what you should run on all your web pages</p>
<ul>
<li>The <a href="http://validator.w3.org/" title="Use MarkUp Validator!"><span class="weight">MarkUp Validator</span></a>. - Also known as the <span class="oblique">HTML validator</span>, it helps check Web documents in formats like HTML and XHTML, SVG or MathML.</li>
<li>The <a href="http://jigsaw.w3.org/css-validator/" title="Use CSS Validator!"><span class="weight">CSS Validator</span></a> - validates CSS stylesheets or documents using CSS stylesheets.</li>
<li>The <a href="http://validator.w3.org/checklink/" title="Use Link Checker!"><span class="weight">Link Checker</span></a> - Checks anchors (hyperlinks) in a HTML/XHTML document. Useful to find broken links, etc.</li>
</ul>
<p class="note">[Elementary note: Courtesy of the <a href="http://www.w3.org/QA/Tools/" title="View page"><abbr title="World Wide Web Consortium">W3C</abbr> Quality Assurance Tools</a> page.]</p>
</blockquote>
<p>The most common <abbr>(X)HTML</abbr> and <abbr>CSS</abbr> <span class="oblique">used for the structure of a site should be corrected.</span></p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/web-standards/standards-reboot-as-web-standards-indicator.html">Continued.</a>
</content>
</entry>
<entry>
<title>They aren&amp;#8217;t HTML5 docs in the first place</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/html/html5-documents-are-not.html" />
<modified>2008-05-29T16:00:29Z</modified>
<issued>2007-06-18T01:44:26Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.190</id>
<created>2007-06-18T01:44:26Z</created>
<summary type="text/plain">How things change. These days, I have ceased considering what makes a document conforming or nonconforming by its Document Type Declaration. Documents are conforming or documents are nonconforming. Occasionally, they&amp;#8217;re each. A conforming HTML 4.01 document may be a conforming XHTML 1.0 document. Conversly, a nonconforming XHTML 1.0 document may be a conforming HTML5 document.
Ian Hickson offered the following in reply [June 17, 2007] to an W3C HTML WG message, Allow other doctypes.

Conforming HTML4 and XHTML1 docs will not become non-conforming HTML4 and XHTML1 docs. They&apos;ll remain conforming HTML4 and XHTML1 docs. They won&apos;t be conforming HTML5 docs because they aren&apos;t HTML5 docs in the first place. I don&apos;t see this as a problem.

HTML 4.01 or XHTML 1.0 document content which is found nonconforming with the (X)HTML5 Conformance Checking Service 
may be made HTML5 conforming and&amp;#8212;after DocType replacement&amp;#8212;pass. Presently, conforming HTML5 documents that have not included undefined W3C elements, e.g., &amp;#60;header&amp;#62; will pass W3C Markup Validation (except for the various Document Type Declaration and Charater Set requirements).
I thought about what constitutes failure and acceptance between HTML 4.01, XHTML 1.0 and HTML5. It&amp;#8217;s content.
I did some simple test cases.<br /><br /><a href="http://www.elementary-group-standards.com/html/html5-documents-are-not.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>HTML</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<p class="article-first-sentence">How things change. These days, I have ceased considering what makes a document conforming or nonconforming by its Document Type Declaration. Documents are conforming or documents are nonconforming. Occasionally, they&#8217;re each. A conforming <abbr title="HyperText Markup Language">HTML</abbr> 4.01 document may be a conforming <abbr title="Extensible HyperText Markup Language">XHTML</abbr> 1.0 document. Conversly, a nonconforming <abbr>XHTML</abbr> 1.0 document <span class="oblique">may</span> be a conforming <abbr>HTML5</abbr> document.</p>
<p>Ian Hickson offered the following in reply [June 17, 2007] to an <abbr title="World Wide Web Consortium">W3C</abbr> <abbr>HTML</abbr> <abbr title="Working Group">WG</abbr> message, <a href="http://lists.w3.org/Archives/Public/public-html/2007Jun/0318.html">Allow other doctypes</a>.</p>
<blockquote cite="http://lists.w3.org/Archives/Public/public-html/2007Jun/0320.html">
<p>Conforming <abbr>HTML4</abbr> and <abbr>XHTML1</abbr> docs will not become non-conforming <abbr>HTML4</abbr> and <abbr>XHTML1</abbr> docs. They'll remain conforming <abbr>HTML4</abbr> and <abbr>XHTML1</abbr> docs. They won't be conforming <abbr>HTML5</abbr> docs because they aren't <abbr>HTML5</abbr> docs in the first place. I don't see this as a problem.</p>
</blockquote>
<p><abbr>HTML</abbr> 4.01 or <abbr>XHTML</abbr> 1.0 document content which is found nonconforming with the <a href="http://hsivonen.iki.fi/validator/html5/" title="View Service"><abbr>(X)HTML5</abbr> Conformance Checking Service</a> 
may be made <abbr>HTML5</abbr> conforming and&#8212;after DocType replacement&#8212;pass. Presently, conforming <abbr>HTML5</abbr> documents that have not included undefined <abbr>W3C</abbr> elements, e.g., <code>&#60;header&#62;</code> will pass <abbr>W3C</abbr> Markup Validation (except for the various Document Type Declaration and Charater Set requirements).</p>
<p>I thought about what constitutes failure and acceptance between HTML 4.01, XHTML 1.0 and HTML5. It&#8217;s content.</p>
<p>I did some simple test cases.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/html/html5-documents-are-not.html">Continued.</a>
</content>
</entry>
<entry>
<title>The Lesson of Vitaphone Cartoons as regards Web Design</title>
<link rel="alternate" type="text/html" href="http://www.elementary-group-standards.com/web-design/standards-reboot-spring-2007-design.html" />
<modified>2008-05-27T16:23:44Z</modified>
<issued>2007-06-10T20:48:16Z</issued>
<id>tag:www.elementary-group-standards.com,2007://1.189</id>
<created>2007-06-10T20:48:16Z</created>
<summary type="text/plain">And, What affect it had on judging Standards Reboot Spring Designs
I like watching cartoons.
I was graciously asked by David Blanchet to judge Standards Reboot Spring 2007. I accepted. 
Sites were to be judged on visual &amp;#230;sthetics, code semantics and over all strategy (or, integration of the &amp;#230;sthetic and code). Design &amp;#230;sthetics isn&apos;t difficult except for me.
That&amp;#8217;s where cartoon watching illustrates things.<br /><br /><a href="http://www.elementary-group-standards.com/web-design/standards-reboot-spring-2007-design.html">Continued.</a></summary>
<author>
<name>Sean Fraser</name>

</author>
<dc:subject>Web Design</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.elementary-group-standards.com/">
<![CDATA[<h4 class="articleSubHead">And, What affect it had on judging Standards Reboot Spring Designs</h4>
<p class="article-first-sentence">I like watching cartoons.</p>
<p>I was graciously asked by <a href="http://www.climaxdesigns.com/conversion/" title="View ClimaxDesigns">David Blanchet</a> to judge <a href="http://standardsreboot.com/sites/all/" title="View site">Standards Reboot Spring 2007</a>. I accepted. 
<p>Sites were to be judged on visual &#230;sthetics, code semantics and over all strategy (or, integration of the &#230;sthetic and code). Design &#230;sthetics isn't difficult except for me.</p>
<p>That&#8217;s where cartoon watching illustrates things.</p>]]>
<br /><br /><a href="http://www.elementary-group-standards.com/web-design/standards-reboot-spring-2007-design.html">Continued.</a>
</content>
</entry>

</feed>