<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AdultWebSEO.com ~ Helping Webmasters Earn More Money with Adult Affiliate Advertising. &#187; General</title>
	<atom:link href="http://adultwebseo.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://adultwebseo.com</link>
	<description></description>
	<lastBuildDate>Fri, 15 Jan 2010 23:47:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Step HTML Diet.</title>
		<link>http://adultwebseo.com/10-step-html-diet/</link>
		<comments>http://adultwebseo.com/10-step-html-diet/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 23:20:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Newbies]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://adultwebseo.com/?p=15</guid>
		<description><![CDATA[Your new year&#8217;s resolution may be to go on a diet. Here are some tips to put your HTML on a diet, improving load times and writing better code.
1. Use fewer files and directories

Every file is a separate call to the server.
Instead of using many small images you might consider using an imagemap.
Decrease the number [...]]]></description>
			<content:encoded><![CDATA[<p>Your new year&#8217;s resolution may be to go on a diet. Here are some tips to put your HTML on a diet, improving load times and writing better code.</p>
<p>1. Use fewer files and directories</p>
<ul>
<li>Every file is a separate call to the server.</li>
<li>Instead of using many small images you might consider using an imagemap.</li>
<li>Decrease the number of directory structure levels.</li>
</ul>
<p>2. Limit your spacing</p>
<ul>
<li>While we know that spaces in your code, as a rule, should not effect the layout, it does effect how it&#8217;s parsed. Decrease or eliminate the spaces between your lines of code.</li>
</ul>
<p>3. Use relative addressing instead of absolute addressing.</p>
<ul>
<li> Instead of using href=http://www.mydomain.com/images/pic1.jpg, use href=&#8221;../images/pic1.jpg&#8221;</li>
<li>To really speed things up use the &lt;base&gt; tag in the  &lt;head&gt; like this: &lt;base href=http://www.mydomain.com&gt; then use relative addressing in the rest of the page.</li>
</ul>
<p>4. Use HTML to control spacing when possible</p>
<ul>
<li>Instead of using a spacer.gif to manipulate space, try using &amp;nbsp; for horizontal spacing and the &lt;br&gt; and &lt;p&gt; tags for vertical spacing.</li>
</ul>
<p>5. Eliminate repetitive tags</p>
<ul>
<li>This is something you&#8217;ll often find in pages created with point and click web applications (WYSIWYG HTML editors) for example:&lt;font face=&#8221;arial&#8221;&gt;Hello World&lt;/font&gt; &lt;font face=&#8221;arial&#8221;&gt;Welcome to my web page.&lt;/font&gt;
<p>In this example the first &lt;/font&gt; and the second &lt;font face=&#8221;arial&#8221;&gt; could be eliminated.</li>
</ul>
<p>6. Eliminate attributes with default values</p>
<ul>
<li>For example, you don&#8217;t need to use these:<br />
&lt;body text=&#8221;black&#8221;&gt;<br />
&lt;div align=&#8221;left&#8221;&gt;<br />
&lt;font size=&#8221;3&#8243; color=&#8221;silver&#8221; face=&#8221;times&#8221;&gt;</li>
</ul>
<p>7. Use short file names and directories</p>
<ul>
<li>Instead of href=&#8221;../imagefiles/companylogos/advertisements.html try href=&#8221;../imgs/logos/ads.html</li>
</ul>
<p>8. Use Cascading Style Sheets</p>
<ul>
<li>Use CSS to position your content. It requires less code and you have more accurate control over layout.</li>
</ul>
<p>9. Beware of WYSIWYG code trash</p>
<ul>
<li>Many web authoring apps add their own proprietary code. FrontPage is notorious for this. Beware!!</li>
<li>Clean up your META tag. You don&#8217;t need the following info in your METAs:<br />
&lt;META NAME=&#8221;generator&#8221; content=&#8221;Microsoft FrontPage 4.0&#8243;&gt;<br />
&lt;META NAME=&#8221;ProgId&#8221; CONTENT=&#8221;FrontPage.Editor.Document&#8221;&gt;</li>
</ul>
<p>10. Table Savvy</p>
<ul>
<li>Avoid nesting tables. Rather than creating complex table layouts, use the attributes rowspan and colspan to control content layout.</li>
<li>If you can, fill empty table data cells with &amp;nbsp; This weighs less than a spacer.gif.</li>
<li>Tables take time. Even if you need to use a table for some of your content, the entire page doesn&#8217;t have to be in a table.</li>
</ul>
<p>Do you have any other suggestions? Add them to the comments below! Ok, the holidays are over&#8230; Let&#8217;s get back to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://adultwebseo.com/10-step-html-diet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML References</title>
		<link>http://adultwebseo.com/html-references/</link>
		<comments>http://adultwebseo.com/html-references/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 20:46:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://adultwebseo.com/?p=12</guid>
		<description><![CDATA[Just some quick references/bookmarks for those of you just starting out. If you know of anything else that deserves to be on this list, make sure to drop a link in the comments box below!
• HTML Tricks &#8211; This site has lots of HTML help and resources for you. Learn the tricks!!
• HTML: An Interactive Tutorial &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Just some quick references/bookmarks for those of you just starting out. If you know of anything else that deserves to be on this list, make sure to drop a link in the comments box below!</p>
<p>• <a href="http://www.htmltricks.com">HTML Tricks</a> &#8211; This site has lots of HTML help and resources for you. Learn the tricks!!</p>
<p>• <a href="http://davesite.com/webstation/html/">HTML: An Interactive Tutorial</a> &#8211; Step by step HTML tutorials for beginners.</p>
<p>• <a href="http://www.htmlforums.com/">HTML Forums</a> &#8211; Forums where you can share knowledge with other webmasters.</p>
<p>• <a href="http://www.htmlgoodies.com/">HTML Goodies</a> &#8211; A well established website, HTML Goodies presents this topic in a very simple, easy to understand format.</p>
<p>• <a href="http://www.thepluginsite.com/products/htmlshrinker/">HTML Shrinker</a> &#8211; A real problem with download time is &#8220;bloated&#8221; code. This site will help you clean your code to facilitate a quick download!</p>
<p>• <a href="http://www.w3schools.com/">W3Schools</a> &#8211; This site is one of the best IMHO! Learn HTML and then practice your skills right on the site. An excellent place to learn.</p>
<p>• <a href="http://www.w3.org/MarkUp/">World Wide Web Consortium&#8217;s HTML Home Page</a> &#8211; This organization sets the standards for HTML use on the World Wide Web. They are THE source. What they say, goes. So if you have an HTML question, you can find the answer here!</p>
]]></content:encoded>
			<wfw:commentRss>http://adultwebseo.com/html-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning! Work Ahead!</title>
		<link>http://adultwebseo.com/warning-work-ahead/</link>
		<comments>http://adultwebseo.com/warning-work-ahead/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 21:01:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://adultwebseo.com/?p=6</guid>
		<description><![CDATA[The intent of these tutorials is to provide you a condensed source of information to get you started on your way to a successful career as an adult webmaster. Here you will find short, concise articles, references, and advice. Upon completion of these tutorials you should be proficient at HTML, know what application or web [...]]]></description>
			<content:encoded><![CDATA[<p>The intent of these tutorials is to provide you a condensed source of information to get you started on your way to a successful career as an adult webmaster. Here you will find short, concise articles, references, and advice. Upon completion of these tutorials you should be proficient at HTML, know what application or web applet to use to complete a task, plan and develop adult websites for the soul purpose of generating income, and establish yourself as independent, successful business.</p>
<p>Now a word of caution. This is work. This is not to be taken lightly. You will not be building a single website. You will be building a hundred or hundreds of websites and webpages. You will need to be disciplined and organized in your time and your investment.</p>
<p><strong>This is not a &#8220;get rich quick&#8221; business. The adult entertainment business<br />
*is* business. </strong></p>
<p>While it was possible years ago to slap a simple page together, publish it on the net, and get great traffic with great sales within a few months, it is no longer that way. It is not the case for any internet based business. The economy, the competition, the sheer number of sites on the net makes your job, as a webmaster, a continual challenge.</p>
<p>You must be willing to commit to long hours of coding, managing your traffic, managing your sponsors, and an endless list of other various tasks. But in the end, if you truly put forth the effort, it will pay off&#8230; just like any other business. This is a career. This is a job. It is up to you to make it successful. It is your future, in your hands, we will provide you with the knowledge, the kickstart, &#8230;. but you are the one that will make it all happen.</p>
]]></content:encoded>
			<wfw:commentRss>http://adultwebseo.com/warning-work-ahead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to AdultWebSEO.com!</title>
		<link>http://adultwebseo.com/welcome-to-adultwebseo-com/</link>
		<comments>http://adultwebseo.com/welcome-to-adultwebseo-com/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 00:03:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Adult Affiliate Blog]]></category>
		<category><![CDATA[Adult Webmaster Blog]]></category>

		<guid isPermaLink="false">http://adultwebseo.com/?p=3</guid>
		<description><![CDATA[If you happen to stumble upon this blog in its early stages, I just want to welcome you and encourage you to subscribe to the RSS feed as we get this place set up and ready to go. We will basically be discussing all of the various methods out there for making money online with [...]]]></description>
			<content:encoded><![CDATA[<p>If you happen to stumble upon this blog in its early stages, I just want to welcome you and encourage you to subscribe to the RSS feed as we get this place set up and ready to go. We will basically be discussing all of the various methods out there for making money online with adult affiliate networks via established, tried and true methods, and of course cutting edge techniques that are more advanced. I will probably start out with more basic tutorials and work my way up, but if there&#8217;s any specific questions you have, feel free to post you them and let&#8217;s let this place evolve naturally. Looking forward to it, it should be an interesting ride.</p>
]]></content:encoded>
			<wfw:commentRss>http://adultwebseo.com/welcome-to-adultwebseo-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
