<rss version="2.0">
  <channel>
    <title>The Internet Classroom: Standards Compliance</title>
    <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5</link>
    <description></description>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <language>en</language>
    <copyright>All TIC materials copyright © 2007 Cynthia Nie and Trevor Ridinger</copyright>
    <lastBuildDate>Mon, 16 Jul 2007 03:41:36 GMT</lastBuildDate>
    <generator>Io Community Manager</generator>
    <ttl>60</ttl>
    <item>
      <title>Post by senchent</title>
      <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</link>
      <description>&lt;div class=&quot;forumCode&quot;&gt;
  &lt;p class=&quot;noMargin&quot;&gt;Please don't spam.&lt;/p&gt;
&lt;/div&gt;</description>
      <author>(senchent)</author>
      <guid>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</guid>
      <pubDate>Mon, 16 Jul 2007 03:41:36 GMT</pubDate>
    </item>
    <item>
      <title>Post by kzhang</title>
      <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</link>
      <description>&lt;div class=&quot;forumCode&quot;&gt;
  &lt;p class=&quot;noMargin&quot;&gt;I am a good boy and will not spam the forums.&lt;/p&gt;
&lt;/div&gt;</description>
      <author>(kzhang)</author>
      <guid>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</guid>
      <pubDate>Sun, 15 Jul 2007 21:04:33 GMT</pubDate>
    </item>
    <item>
      <title>Post by ShiftOpt</title>
      <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</link>
      <description>&lt;div class=&quot;forumCode&quot;&gt;
  &lt;p class=&quot;noMargin&quot;&gt;Shouldn't you mention &amp;quot;alt&amp;quot; for image tags? &amp;gt;_&amp;gt;&lt;/p&gt;
&lt;/div&gt;</description>
      <author>(ShiftOpt)</author>
      <guid>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</guid>
      <pubDate>Sun, 24 Jun 2007 19:24:22 GMT</pubDate>
    </item>
    <item>
      <title>Post by MadnessX</title>
      <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</link>
      <description>&lt;div class=&quot;forumCode&quot;&gt;
  &lt;p class=&quot;noMargin&quot;&gt;&lt;span style=&quot;font-size: 150%;&quot;&gt;I'm in ur code&lt;/span&gt;&lt;br&gt;&lt;span style=&quot;font-size: 125%;&quot;&gt;Killing all ur deprecations&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description>
      <author>(MadnessX)</author>
      <guid>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</guid>
      <pubDate>Fri, 22 Jun 2007 18:20:31 GMT</pubDate>
    </item>
    <item>
      <title>Post by aqhong</title>
      <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</link>
      <description>&lt;div class=&quot;forumCode&quot;&gt;
  &lt;p class=&quot;noMargin&quot;&gt;&lt;span style=&quot;font-size: 125%;&quot;&gt;&lt;b&gt;my web standards&lt;/b&gt;&lt;/span&gt;&lt;br&gt;&lt;b&gt;let me show you them&lt;/b&gt;&lt;/p&gt;
&lt;/div&gt;</description>
      <author>(aqhong)</author>
      <guid>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</guid>
      <pubDate>Fri, 22 Jun 2007 16:35:42 GMT</pubDate>
    </item>
    <item>
      <title>Post by kass</title>
      <link>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</link>
      <description>&lt;div class=&quot;forumCode&quot;&gt;
  &lt;p&gt;The three things you need in all of your HTML documents. (Note: you still give all your documents a .html extension, despite our use of the term XHTML.)&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;
      &lt;p&gt;Add a &amp;quot;DOCTYPE&amp;quot; declaration to all your documents. &lt;a href=&quot;http://www.alistapart.com/articles/doctype/&quot;&gt;A List Apart&lt;/a&gt; has a decent article with all of the doctypes you'll probably ever use for your projects. (Strict vs. Transitional)&lt;/p&gt;
      &lt;pre class=&quot;code&quot;&gt;      &amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Strict//EN&amp;quot;
&amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&amp;quot;&amp;gt;&lt;/pre&gt;
    &lt;/li&gt;
    &lt;li&gt;
      &lt;p&gt;Your beginning &amp;lt;html&amp;gt; tag shall henceforth look like this:&lt;/p&gt;
      &lt;pre class=&quot;code&quot;&gt;      &amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; xml:lang=&amp;quot;en&amp;quot; lang=&amp;quot;en&amp;quot;&amp;gt;&lt;/pre&gt;
    &lt;/li&gt;
    &lt;li&gt;
      &lt;p&gt;And you must include the following tag within your &amp;lt;head&amp;gt; &amp;lt;/head&amp;gt; section:&lt;/p&gt;
      &lt;pre class=&quot;code&quot;&gt;      &amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot;/&amp;gt;&lt;/pre&gt;
    &lt;/li&gt;
  &lt;/ul&gt;
  &lt;p&gt;XHTML rules (most of which you've already been doing!)&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;
      &lt;p class=&quot;noMargin&quot;&gt;Tag contents should always be lowercase.&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
      &lt;p class=&quot;noMargin&quot;&gt;Tags that have attributes defined in them must have quotation marks, either a single or double.&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
      &lt;p class=&quot;noMargin&quot;&gt;All tags must have an accompanying closing tag, even &amp;quot;empty&amp;quot; tags. (e.g. &amp;quot;&amp;lt;hr /&amp;gt;&amp;quot;)&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
      &lt;p class=&quot;noMargin&quot;&gt;Nest your tags properly: First In, Last Out as they say. (i.e. &amp;lt;strong&amp;gt;&amp;lt;em&amp;gt;&amp;lt;/em&amp;gt;&amp;lt;/strong&amp;gt;, NOT &amp;lt;strong&amp;gt;&amp;lt;em&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/em&amp;gt;)&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
      &lt;p class=&quot;noMargin&quot;&gt;Do not use deprecated tags or attributes, or &amp;quot;out of date&amp;quot; tags. Check the book or Google to see if a tag is deprecated or just try it and see if your page validates.&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ul&gt;
  &lt;p class=&quot;noMargin&quot;&gt;All pages that you make must have a validation link on them for both HTML and CSS. It might look something like this:&lt;/p&gt;
  &lt;pre class=&quot;code&quot;&gt;&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://validator.w3.org/check?uri=referer&amp;quot;&amp;gt;XHTML 1.0&amp;lt;/a&amp;gt;,
&amp;lt;a href=&amp;quot;http://jigsaw.w3.org/css-validator/check/referer&amp;quot;&amp;gt;CSS 2.0&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/pre&gt;
  &lt;div class=&quot;h2&quot;&gt;
    &lt;p class=&quot;noMargin&quot;&gt;/lol&lt;/p&gt;
  &lt;/div&gt;
  &lt;p class=&quot;noMargin&quot;&gt;&lt;a href=&quot;http://unixkiste.org/fun/pm20060621.png&quot;&gt;http://unixkiste.org/fun/pm20060621.png&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description>
      <author>(kass)</author>
      <guid>http://virtualatdp.berkeley.edu:8081/tic07/lectures/forum/5?page=1</guid>
      <pubDate>Fri, 22 Jun 2007 16:26:08 GMT</pubDate>
    </item>
  </channel>
</rss>