<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1033783" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1033783</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/what-am-i-doing-wrong#comment-1196499</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;dk01 wrote:&lt;/strong&gt; its always been my personal opinion that the more you can separate the design and content the better.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You won&#039;t hear any arguments from me on that score &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;.  Just because the elements are allowed doesn&#039;t mean they should be used.&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Apr 2006 19:50:26 +0000</pubDate>
 <dc:creator>GDVS</dc:creator>
 <guid isPermaLink="false">comment 1196499 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/what-am-i-doing-wrong#comment-1196498</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;GDVS wrote:&lt;/strong&gt; Not quite true, the doctype for this document is XHTML 1.0 Transitional which allows both  and  tags while all XHTML DTDs permit .   and  were deprecated in HTML 4 but only obsoleted with XHTML 1.0 Strict.  XHTML 1.0 Transitional no more seperates content from presentation than does HTML 4, in both cases it&#039;s down to the author to design the site well and avoid use of deprecated tags.  CSS is the key to good clean design, not XHTML.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Woops my mistake. Wrote that late last night.  Well anyhow its always been my personal opinion that the more you can separate the design and content the better.  Although you wouldn&#039;t be wrong to leave in your b, font, and center tags, it might just be easier to eliminate them now if you intend to start using CSS anyhow.&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Apr 2006 19:29:20 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1196498 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/what-am-i-doing-wrong#comment-1196473</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;dk01 wrote:&lt;/strong&gt; Another thing I noticed was you had some invalid tags. In XHTML formatting is separate from data.  This means that there is no  tag,  tag, or  tag.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Not quite true, the doctype for this document is XHTML 1.0 Transitional which allows both  and  tags while all XHTML DTDs permit .   and  were deprecated in HTML 4 but only obsoleted with XHTML 1.0 Strict.  XHTML 1.0 Transitional no more seperates content from presentation than does HTML 4, in both cases it&#039;s down to the author to design the site well and avoid use of deprecated tags.  CSS is the key to good clean design, not XHTML.&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Apr 2006 12:19:16 +0000</pubDate>
 <dc:creator>GDVS</dc:creator>
 <guid isPermaLink="false">comment 1196473 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/what-am-i-doing-wrong#comment-1196461</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I went through your code and added the appropriate CSS and fixed some html errors you had.  First thing you need to change is your DOCTYPE declaration.  You should be using the global doctype in my example below and not a local copy.&lt;/p&gt;
&lt;p&gt;Another thing I noticed was you had some invalid tags. In XHTML formatting is separate from data.  This means that there is no  tag,  tag, or  tag. Also  is written: &lt;/p&gt;
&lt;p&gt;Remember to use the XHTML validator &lt;a href=&quot;http://validator.w3.org&quot; class=&quot;bb-url&quot;&gt;here&lt;/a&gt; to check your documents for valid code.  This will tell you where you have errors and will help you debug your code.&lt;/p&gt;
&lt;p&gt;Here is the code I would use. Post here if there are any parts that you need explanations for.  I am more than willing to go into detail on certain parts of the code.  &lt;/p&gt;
&lt;p&gt;Best of luck in your efforts to learn xhtml/css.&lt;/p&gt;
&lt;p&gt;- Jim &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;XHTML TEST&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;/* This CSS changes the body background and alignment */&lt;br /&gt;body { &lt;br /&gt;	background: #f7f7f7;&lt;br /&gt;	text-align: center;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* This changes the link color */&lt;br /&gt;a { &lt;br /&gt;	color: #ff4040;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* This changes the visited link color */&lt;br /&gt;a:visited { &lt;br /&gt;	color: black;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* This is the CSS for the table. */&lt;br /&gt;#centeredTable {&lt;br /&gt;	width:44%;&lt;br /&gt;	background:#ffffff;&lt;br /&gt;	margin: 0 auto;&lt;br /&gt;	text-align:left;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* This is for the first row of the table */&lt;br /&gt;.firstRow {&lt;br /&gt;	font-family: Arial, sans-serif;&lt;br /&gt;	font-size: medium;&lt;br /&gt;	color: #000;&lt;br /&gt;	width: 100%;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* The CSS for the left hand column */&lt;br /&gt;.columnLeft {&lt;br /&gt;	font-family: Verdana, sans-serif;&lt;br /&gt;	font-size: larger;&lt;br /&gt;	color: #191970;&lt;br /&gt;	width: 50%;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* The CSS for the right hand column */&lt;br /&gt;.columnRight {&lt;br /&gt;	font-family: Verdana, sans-serif;&lt;br /&gt;	font-size: larger;&lt;br /&gt;	color: #191970;&lt;br /&gt;	width: 50%;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;table id=&amp;quot;centeredTable&amp;quot;&amp;gt;&lt;br /&gt;	&amp;lt;tr&amp;gt;&lt;br /&gt;		&amp;lt;td class=&amp;quot;topRow&amp;quot; colspan=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;			&amp;lt;p&amp;gt;&lt;br /&gt;				&amp;lt;strong&amp;gt;Testing&amp;lt;/strong&amp;gt;&lt;br /&gt;				How bad does my XHTML suck?&lt;br /&gt;			&amp;lt;/p&amp;gt;&lt;br /&gt;		&amp;lt;/td&amp;gt;&lt;br /&gt;	&amp;lt;/tr&amp;gt;&lt;br /&gt;	&amp;lt;tr&amp;gt;&lt;br /&gt;		&amp;lt;td class=&amp;quot;columnLeft&amp;quot;&amp;gt;&lt;br /&gt;			&amp;lt;p&amp;gt;&lt;br /&gt;				First try ever. &amp;lt;br /&amp;gt;&lt;br /&gt;				No clue what I am doing.&amp;lt;br /&amp;gt;&lt;br /&gt;			&amp;lt;/p&amp;gt;&lt;br /&gt;		&amp;lt;/td&amp;gt;&lt;br /&gt;		&amp;lt;td class=&amp;quot;columnRight&amp;quot;&amp;gt;&lt;br /&gt;			&amp;lt;p&amp;gt;&lt;br /&gt;				If i do okay&amp;lt;br /&amp;gt;&lt;br /&gt;				CSS is next...&amp;lt;br /&amp;gt;&lt;br /&gt;			&amp;lt;/p&amp;gt;&lt;br /&gt;		&amp;lt;/td&amp;gt;&lt;br /&gt;	&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Sat, 01 Apr 2006 07:22:13 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1196461 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
