<?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>GayWideWebmasters Articles &#187; WebDesign</title>
	<atom:link href="http://directory.gaywidewebmasters.com/articles/category/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://directory.gaywidewebmasters.com/articles</link>
	<description>Articles and Helpful Information for Adult Webmasters for Gay Traffic</description>
	<lastBuildDate>Sun, 10 Apr 2011 17:42:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.2</generator>
	<item>
		<title>What&#8217;s A CHMOD?</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/whats-a-chmod/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/whats-a-chmod/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:32:24 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=426</guid>
		<description><![CDATA[CHMOD is another name for setting the permissions of files on your server. All UNIX based web servers understand the concept of permissions. these are broken down into three distinct areas. Permissions for the person who OWNS the file. Permissions for the group (all users are members of one or more groups). Permissions for everyone [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>CHMOD is another name for setting the permissions of files on your server.</p>
<p>All UNIX based web servers understand the concept of permissions. these are broken down into three distinct areas.</p>
<p>Permissions for the person who OWNS the file.<br />
Permissions for the group (all users are members of one or more groups).<br />
Permissions for everyone else.</p>
<p>Permissions are listed one of two ways either using numbers such  as 755 or, using letters such as rwx-xr-x however they both mean the  same thing.</p>
<p>The first number or first group of three letters stands for the permissions of the owner (IE 7 or rwx).<br />
The second number or second group of letters stands for the permissions of the group (IE 5 or xr).<br />
The third number or third group of letters stands for the permissions of everyone else (IE 5 or x).</p>
<p>The way the system works is as follows:</p>
<p>1 = x = you are able to execute (run) this program.<br />
2 = w = you are able to write to this file.<br />
4 = r = you are able to read the contents of this file.</p>
<p>so if you add it up rwx = 7.</p>
<p>So, in the example given above (755 or rwx-xr-x) the owner is allowed to read and write the file AND execute it.<br />
The group is allowed to execute and write to the file.<br />
Everyone else can execute the file.</p>
<p>We hope this gives you a little more insight to how CHMOD&#8217;ing  or, setting the permissions on your server can affect how files act.</p>
<p>Article written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/whats-a-chmod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What On Earth Is CGI?</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/what-on-earth-is-cgi/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/what-on-earth-is-cgi/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:30:54 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=424</guid>
		<description><![CDATA[Let&#8217;s unlock a little bit of the mystery about something called CGI. If it helps any, CGI means Common Gateway Interface. This is a method which is used to swap data between the server (the hardware and software that actually allows you to get to your web site) and a web client (your browser). CGI [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Let&#8217;s unlock a little bit of the mystery about something called CGI. If it helps any, CGI means Common Gateway Interface.</p>
<p>This is a method which is used to swap data between the server  (the hardware and software that actually allows you to get to your web  site) and a web client (your browser). CGI is actually a set of  standards where a program or script (a series of commands) can send data  back to the web server where it can be processed.</p>
<p>Typically, you use standard HTML tags to get data from a person,  then pass that data to a CGI routine. The CGI routine then performs  some action with the data.</p>
<p>Some of the more common uses of CGI include:</p>
<p>Guest books &#8211; The CGI routine is responsible for accepting the  data, ensuring it is valid, sending an email acknowledgement back to the  writer, perhaps sending an email to the webmaster, and creating the  guest book entry itself.</p>
<p>Email Forms &#8211; A simple CGI forms routine just formats the data  into an email and sends it back to the webmaster. More complicated  routines can maintain a database, send an acknowledgement and validate  data.</p>
<p>Mailing List Maintenance &#8211; These routines allow visitors to  subscribe and unsubscribe from a mailing list. In this case, the CGI  routine maintains a database of email addresses, and the better ones  send acknowledgements back to the visitor and webmaster.</p>
<p>A CGI routine can be anything which understands the CGI  standard. A popular CGI language is called PERL, which is simple to understand and use (well, compared to other  languages). PERL is a scripting language, which means each time a PERL  routine is executed the web server must examine the PERL commands to  determine what to do. In contrast, a compiled language such as C++ or  Visual Basic can be directly executed, which is faster and more  efficient.</p>
<p>Okay, in a nutshell (and greatly simplified), here&#8217;s how it works:</p>
<p>1) You (the webmaster) specify a form tag which includes the name of the CGI routine.</p>
<p>2) You create HTML tags which retrieves data from your visitors.</p>
<p>3) Each of the input tags includes a variable name. The data  which is retrieved from the visitor (or directly set if the tag includes  the &#8220;hidden&#8221; qualifier) is placed in the variable name.</p>
<p>4) When the visitor presses the &#8220;submit&#8221; button, the CGI routine  which was specified in the form tag is executed. At this time, the CGI  routine &#8220;takes control&#8221;, meaning the browser essentially is waiting for  it to complete.</p>
<p>5) This CGI routine can get data from variable names. It retrieves the data and does whatever action is required.</p>
<p>6) When the CGI routine finishes, it returns control back to the browser.</p>
<p>Some important things to remember about CGI routines:</p>
<p>You can install CGI routines on your own site if your host  allows it http://www.webair.com  is an example of a web host which allows for CGI  routines. Some web hosts do not allow you to install your own routines  but do provide some pre-written ones to you. If these are not sufficient  for your needs, you can find a remote hosting service to provide the  necessary functions.</p>
<p>Generally, if you install your own routines they must be installed in the cgi-bin directory of your site. This is a special location which allows scripts and programs to be executed.</p>
<p>CGI routines work best on Apache-style servers. Windows NT and  Windows 2000 does support CGI, but it tends to be slow and problematic.</p>
<p>If you use a remote hosting service, you must remember that  although they appear to be giving you this for free, you are actually  paying a price. Usually they want to display advertisements, although  some of them actually take visitors away from your site.</p>
<p>When you write a CGI routine, you have the choice of a scripting  language like PERL or a compiled language such as C++ or Visual Basic.  Anything which can execute on the web server is acceptable.</p>
<p>I hope this short introduction to CGI has cleared up some of the mystery.</p>
<p>Article written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/what-on-earth-is-cgi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using TITLE Tags effectively</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/using-tags-effectively/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/using-tags-effectively/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:24:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=412</guid>
		<description><![CDATA[Microsoft Internet Explorer has supported the TITLE attribute for links since version 4.0. Netscape began supporting it in version 6.0 The TITLE attribute allows you to enter descriptive text about a link that&#8217;s displayed when the mouse moves over the link. For an example, move your mouse over the link below: European Webmasters The HTML [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Microsoft Internet Explorer has supported the TITLE attribute for links since version 4.0. Netscape began supporting it in version 6.0</p>
<p>The TITLE attribute allows you to enter descriptive text about a link that&#8217;s displayed when the mouse moves over the link. For an example, move your mouse over the link below:</p>
<div>European   Webmasters</div>
<p>The HTML source code for this link is shown below:</p>
<table align="center">
<tbody>
<tr>
<td>
<pre>&lt;a href="http://www.europeanwebmasters.com"
  title="Click Here To Learn Foreign Adult Marketing"&gt;European Webmasters&lt;/a&gt;</pre>
</td>
</tr>
</tbody>
</table>
<p>If your browser supports the TITLE attribute you should see a small popup box appear, similar to the way alternate text for images is displayed when you move your mouse over the image.</p>
<p>This attribute is similar to the ALT attribute for the IMG tag, both in its appearance and its limitations. The value of the attribute must be inside quotation marks, and it can only contain plain text (no HTML tags). You can include carriage returns in the title, and these will be displayed in the text. The maximum length of the TITLE text for Internet Explorer is very large; we&#8217;ve tested it with over 500 characters. Try to keep your descriptions below 25 words, though; any more than this can be hard to read and, because the search engine spiders can read this text you may be considered as spamming the engines.</p>
<p>The TITLE attribute is useful in places where your HTML design limits the length of your link text. That&#8217;s often the case for links in a navigation bar, especially if your page has a multi-column layout. Try using the TITLE attribute to give your visitors extra navigation information.</p>
<p>In addition you can also use the TITLE tag on standard text for extra information where you just don&#8217;t have the space to be as affluent as you would like. An example of this is shown below:</p>
<p><span>Use of the TITLE tag on plain text</span></p>
<p><span>The HTML code for this is also shown below:</span></p>
<div>
<table border="0" cellspacing="0" cellpadding="0" width="97%">
<tbody>
<tr>
<td width="100%">&lt;font size=&#8221;2&#8243; face=&#8221;Verdana&#8221;           color=&#8221;#000080&#8243; title=&#8221;Use Of The TITLE Tag On Plain           Text&#8221;&gt;Use of the TITLE tag on plain text&lt;/font&gt;</td>
</tr>
</tbody>
</table>
</div>
<p>This attribute is part of the HTML 4.0 standard. Internet Explorer, Netscape 6.x and Opera (Version 3.0 or higher) support it. However, the attribute degrades gracefully, visitors with non-supporting browsers (like Netscape 4.x) would see the link as if you hadn&#8217;t used the attribute.</p>
<p>As you can see from the above examples by using the TITLE tags effectively you can double, if not treble your use of keywords however, caution should be paid when using these features of the tag so that you don&#8217;t inadvertently spam the search engines.</p>
<p>Article Written By Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/using-tags-effectively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SSI For Auto Updates</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/using-ssi-for-auto-updates/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/using-ssi-for-auto-updates/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:23:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=410</guid>
		<description><![CDATA[We all realize the benefits of being able to save time when building sites so, I got into thinking, how can I make my sites look as if they are continually updated without the need to go in and update them manually? Enter the world of SSI. SSI is actually a nifty little tool, not [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>We all realize the benefits of being able to save time when building  sites so, I got into thinking, how can I make my sites look as if they  are continually updated without the need to go in and update them  manually? Enter the world of SSI.</p>
<p>SSI is actually a nifty little tool, not only can you include  files from a central location but, you can include them at specific  times of the day, days of the week or even months of the year, very  handy indeed if you are building any type of site that needs updating  periodically.</p>
<p>Once the main burst of work has been completed you can pretty  much use the same files over and over again to help you out.</p>
<p>So onto the auto updating SSI, the following SSI coding will  enable you to update a page or pages based on which day of the month it  is. It will check the day the page has been accessed and display the  relevant information again, this is a handy thing to have should your  sponsor be running a promotion over several days, all you need to do is  update a selection of SSI files and all of your sites are updated  instantly.</p>
<p>&lt;!&#8211;#config timefmt=&#8221;%d&#8221;&#8211;&gt;<br />
&lt;!&#8211;#include virtual=&#8221;/yourdirectory/$DATE_LOCAL.txt&#8221;&#8211;&gt;</p>
<p>What you need to do is create 31 text files named 01.txt right  the way through to 31.txt take the SSI call above and edit the location  of the SSI files on your server, you may like to have a central folder  named /SSI/ for this purpose so the location would be changed to  /domain.com/SSI/$DATE_LOCAL.txt</p>
<p>I the 31 files you created you could have a table ad with eight  of your sponsors links, an article in each one or even just a simple  text link, anything that you may want to update can be included in these  files.</p>
<p>As I mentioned above you can base the time, date and even month  of rotation to whatever you like to alter how the files are rotated and  ultimately viewed on the web you should change the %d in the timefmt  field to one of the following:</p>
<p>%d : Day of the month requires 31 files named 01.txt to 31.txt<br />
%w : Day of the week requires 7 files named 0.txt to 6.txt<br />
%j : Day of the year requires 365 files named 001.txt to 365.txt<br />
%u : The week of the year requires 52 files named 00.txt to 53.txt<br />
%m : The month of the year requires 12 files named 01.txt to 12.txt<br />
%H : Hour of the day requires 24 files named 00.txt to 23.txt<br />
%M : Minute of the hour requires 60 files named 00.txt to 59.txt</p>
<p>As you can see from the above there really are no limitations to  the uses of updating using SSI and, apart fro the relative ease of use  and the time saved using them should one sponsor not be converting for  you all you need to do to swap sponsors is alter your central set of SSI  files and you have instantly changed sponsors over all of your sites.</p>
<p>Article written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/using-ssi-for-auto-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using JavaScript To Auto Scroll Text</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/using-javascript-to-auto-scroll-text/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/using-javascript-to-auto-scroll-text/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:20:38 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=406</guid>
		<description><![CDATA[Using JavaScript To Auto Scroll Text. There may come a time when you would like to have some text on a page that is simply just to big to fit on a single page. Of course, you could always create a new document for this text but, what if you could make the text actually [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Using JavaScript To Auto Scroll Text.<br />
</strong><br />
There may come a time when you would like to have some text on a  page that is simply just to big to fit on a single page. Of course, you  could always create a new document for this text but, what if you could  make the text actually scroll through the surfers browser?</p>
<p>The following JavaScript will do just that.</p>
<p>Place the following section of JavaScript coding between your &lt;head&gt; and &lt;/head&gt; tags:</p>
<p>&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&gt;<br />
&lt;!&#8211;</p>
<p>function scrollit() {<br />
for (I=1; I&lt;=1200; I++) window.scroll(1,I);<br />
}</p>
<p>// &#8211;&gt;<br />
&lt;/SCRIPT&gt;</p>
<p>Along with the following JavaScript coding someone in the Body of your page:</p>
<p>&lt;FORM&gt;<br />
&lt;INPUT type=button value=&#8221;scroll&#8221; onClick=&#8221;scrollit()&#8221;&gt;<br />
&lt;/FORM&gt;</p>
<p>Have a play around with the numbers in the first section of the  JavaScript to speed up and slow down the rate of scrolling until you  find a speed that is easy on the eye.</p>
<p>Article written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/using-javascript-to-auto-scroll-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Basic Server Side Includes (SSI)</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/using-basic-server-side-includes-ssi/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/using-basic-server-side-includes-ssi/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:17:55 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=400</guid>
		<description><![CDATA[Server side includes are what their name sounds like.  A way to include the contents of another file into your current web page BEFORE the web page gets sent off to the surfer.  Not only does this include contents of a static file but you can also include the results of a CGI program and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Server side includes         are what their name sounds like.  A way to include the contents of         another file into your current web page BEFORE the web page gets sent         off to the surfer.  Not only does this include contents of a static         file but you can also include the results of a CGI program and on some         web servers, you can even have it display the current date and time.</p>
<p>Now, many web hosts do         not normally have server side includes turned on. You will have to ask         your host if they have SSI turned on and if they do, what is the file         name extension for SSI.  By default, SSI files have an .shtml         extension.</p>
<p>Sometimes, you can turn         SSI on yourself.  If you host doesn&#8217;t have SSI turned on for you         already, you can try adding the following two lines to your .htaccess         file.  Then create a file with the .shtml extension, include a SSI         command and see if it works.</p>
<p>AddType text/html .shtml<br />
AddHandler server-parsed .shtml</p>
<p>When you use SSI commands, you place them exactly in the location within         your web page where you want the output of the SSI command to appear         when you finally browse the page.  If you have SSI, then you can         use the following command to include a file.  When you include a         file, you can either give it a path name to the file or you can give a         URL to the file. I&#8217;ll list both here.</p>
<p>&lt;!&#8211;#include file=&#8221;/some/path/above/my/web/to/my/header.html&#8221;         &#8211;&gt;</p>
<p>This is an example of how to include a file based on its path name.          Now,<br />
here&#8217;s the same file put included with its URL.</p>
<p>&lt;!&#8211;#include virtual=&#8221;/to/my/header.html&#8221; &#8211;&gt;</p>
<p>And this is an example of how to use a URL.  With a URL however, it         cannot be a complete URL such as <a href="http://www.somesite.com/somefile.html">http://www.somesite.com/somefile.html</a>.          It has to be within your current website.  You can also use the URL         method to run a CGI script!  Here&#8217;s an example of that:</p>
<p>&lt;!&#8211;#include virtual=&#8221;/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2&#8243;<br />
&#8211;&gt;</p>
<p>As you can see, we can even pass arguments to the CGI script just as if         you typed it into your browser!  There is also another way of         running a CGI script but this is not as widely used any more and you         should use the #include virtual method instead.  Here is the same         example so that you will know what it means when you see it.</p>
<p>&lt;!-exec cgi=&#8221;/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2&#8243;         &#8211;&gt;</p>
<p>As I mentioned earlier, you can use SSI to display the current time and         date. Here&#8217;s how:</p>
<p>&lt;!-echo &#8220;$DATE_LOCAL&#8221; &#8211;&gt;</p>
<p>This will display the current date and time. SSI is usually used when         you  want to have a standard header or footer on each page.          It&#8217;s also used for displaying rotating banners or page counters. As         you see above, you can also  use it to display the current date and         time or the date when the page was  last modified.</p>
<p>SSI has also been used         for cloaking and some tracking  software uses SSI to track each         incoming hit to the web page.  If you would  like more         information about SSI, go to<br />
<a href="http://www.apache.org/docs/mod/mod_include.html">http://www.apache.org/docs/mod/mod_include.html</a>.          This is the definitive guide on SSI on the Apache web server.</p>
<p>Most other web servers         that use SSI also follow these conventions.</p>
<p>Article written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/using-basic-server-side-includes-ssi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Use ALT Tags On Your Sites</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/how-to-use-tags-on-your-sites/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/how-to-use-tags-on-your-sites/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:16:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=398</guid>
		<description><![CDATA[One simple technique can improve your search engine rank, make site navigation easier, and increase the accessibility of your site to disabled visitors. Yet, as many as 78% of sites don&#8217;t use it! Boost your site&#8217;s profile with human visitors and search engine spiders with the &#60;ALT&#62; tag. Inserting ALT Text Adding &#60;ALT&#62; descriptions to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>One simple technique can improve your search engine rank, make site navigation easier, and increase the accessibility of your site to disabled visitors. Yet, as many as 78% of sites don&#8217;t use it! Boost your site&#8217;s profile with human visitors and search engine spiders with the &lt;ALT&gt; tag.</p>
<p><strong>Inserting ALT Text</strong></p>
<p>Adding &lt;ALT&gt; descriptions to your &lt;IMG&gt; tags is quick and easy. You don&#8217;t have to do any complex HTML coding. If you can describe your image or link, then you can add ALT tags to your code.</p>
<p>We&#8217;ve used some examples below:</p>
<table width="350" align="center">
<tbody>
<tr>
<td>
<pre>&lt;img src="thumbnails/porn.jpg" 
  width="100" height="78" ALT="Explicit Teenage Sex Pictures"&gt;</pre>
</td>
</tr>
</tbody>
</table>
<p>You can also include an ALT tag when your image is a link:</p>
<table width="350" align="center">
<tbody>
<tr>
<td>
<pre>&lt;a href="porn.html"&gt; 
&lt;img src="thumbnails/porn.jpg" 
width="100" height="78" ALT="Explicit Teenage Sex Pictures"&gt;&lt;/a&gt;</pre>
</td>
</tr>
</tbody>
</table>
<p>Ideally, your ALT text descriptions should be complete sentences, rather than a list of keywords or obscure phrase like &#8220;company logo small 2.&#8221; Remember that all visitors are likely to see (or hear) some version of your ALT text so be sure that it&#8217;s meaningful.</p>
<p><strong>Optimize ALT Descriptions For Search Engines</strong></p>
<p>Besides helping human visitors, ALT descriptions help you rank higher in some search engines. AltaVista and Google are two of the search engines that use ALT descriptive text when they rank Web sites. The growth of search engine/directory partnerships means that a high rank in one engine can often translate into an improved rank on its partner sites.</p>
<p>Search engine algorithms calculate the number of times keywords are repeated and give higher rank to pages that use them often. Keywords in the ALT descriptive text help you increase their frequency on the page. Search engines assume the terms are more relevant and important if they&#8217;re used in the page content, not just listed in the META tag.</p>
<p>For instance, the descriptive text in the example code uses keywords and keyword phrases from the META keyword tag: Explicit Teenage Sex Pictures. Since these are relevant to the site&#8217;s content, they&#8217;re easy to include as descriptive text.</p>
<p>If you&#8217;re having problems choosing relevant, targeted keywords, refer to this article, How To Pick Your Keywords. It provides helpful tips about selecting keywords and using them to improve your search engine ranking.</p>
<p><strong>Make Your Web Site Sticky</strong></p>
<p>ALT tags help you promote your site in another way too: they help make it &#8220;sticky.&#8221; Sticky means that visitors stay at your site longer so they see your advertising and purchase your memberships. Visitors who feel comfortable at a site will stay longer &#8211; and hopefully return more often to make further purchases.</p>
<p>Disabled visitors who use text-only or spoken word browsers rely on the ALT text for clues about the image&#8217;s content and function. This can be a lucrative audience: they represent a worldwide audience of 750 million and spend twice as much time online as the average user. But it isn&#8217;t just a disability issue: ALT tags make your site more accessible to everyone.</p>
<p>Visitors see your ALT text while the images are downloading or when they mouse over images. The descriptive text helps them decide if they want to wait for an image to download or move on to a different page. If your image is also a link, then visitors can read the explanatory text and quickly jump to the section they want.</p>
<p>Site navigation is easier, so impatient visitors are less likely to leave the site.</p>
<p><strong>Don&#8217;t Follow The Crowd</strong></p>
<p>ALT tags are a small addition to your HTML code that can make a big impact on your site. Since many of your competitors don&#8217;t use them, give your site and edge and include them on all images.</p>
<p>Article Written By Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/how-to-use-tags-on-your-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using .htaccess Effectively</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/using-htaccess-effectively/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/using-htaccess-effectively/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:16:10 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=396</guid>
		<description><![CDATA[The .htaccess file is an ASCII text document that can be placed in any directory on your site. It can be used to control access to files and directories, and customize some server operation in your site. A .htaccess file can be created in any word processor but must be saved as text only. You [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The .htaccess file is an ASCII text document that can be placed in  any directory on your site. It can be used to control access to files  and directories, and customize some server operation in your site. A .htaccess file can be created in any word processor but must be saved as  text only. You must use FTP software in ASCII mode to upload or edit  your .htaccess file. For the examples provided here, place the .htaccess file  in your root directory.</p>
<p>There are a variety of functions that you can control using  .htaccess some of the more useful of these are explained below:</p>
<p><strong> Custom Error Messages.</strong></p>
<p>Add the following to the .htaccess file::</p>
<p>ErrorDocument 404 /notfound.html</p>
<p>After &#8220;ErrorDocument&#8221; specify the error code, followed by a  space, and then the path and filename of the .html file you would like  to be displayed when the specified error is generated, each specific  error code is detailed below with the recommended codes to be used in  the .htaccess file in bold :</p>
<p>200 OK<br />
206 Partial content<br />
301 Document moved permanently<br />
302 Document found elsewhere<br />
304 Not modified since last retrieval<br />
400 Bad request<br />
403 Access forbidden<br />
404 Document not found<br />
408 Request timeout<br />
500 Internal server error<br />
501 Request type not supported</p>
<p>Using the codes above your error section of the .htaccess file should look like this:</p>
<p>ErrorDocument 301 /notfound.html<br />
ErrorDocument 400 /notfound.html<br />
ErrorDocument 403 /notfound.html<br />
ErrorDocument 404 /notfound.html<br />
ErrorDocument 500 /notfound.html<br />
ErrorDocument 501 /notfound.html</p>
<p><strong> Redirect to a Different Folder.</strong></p>
<p>Add the following to the .htaccess file:</p>
<p>RewriteEngine on<br />
RewriteRule ^/oldfolder(.*)$ /newfolder/$1 [R]</p>
<p>This redirects the user from /oldfolder/anyfile.html to /newfolder/anyfile.html, when the .htaccess file is uploaded to the otherwise empty &#8220;/oldfolder&#8221; directory.</p>
<p><strong> Denying User Access.</strong></p>
<p>Add the following to the .htaccess file:</p>
<p>&lt;Limit GET&gt;<br />
order allow,deny<br />
deny from 000.00.00.<br />
deny from 000.000.000.000<br />
allow from all<br />
&lt;/Limit&gt;</p>
<p>This is an example of a .htaccess file that will block access to  your site to anyone who is coming from any IP address beginning with  000.00.00 and from the specific IP address 000.000.000.000 . By  specifying only part of an IP address, and ending the partial IP address  with a period, all sub-addresses coming from the specified IP address  block will be blocked. You must use the IP addresses to block access,  use of domain names is not supported</p>
<p><strong> Redirect a Machine Name.</strong></p>
<p>Add the following to the .htaccess file:</p>
<p>RewriteEngine On<br />
Options +FollowSymlinks<br />
RewriteBase /<br />
# Rewrite Rule for machine.domain-name.net<br />
RewriteCond %{HTTP_HOST} machine.domain-name.net $<br />
RewriteCond %{REQUEST_URI} !machine/<br />
RewriteRule ^(.*)$ machine/$1</p>
<p>This will redirect requests for the machine name machine.domain-name.net to the directory machine on the site domain-name.net.</p>
<p><strong> Different Default Home Page.</strong></p>
<p>Add the following to the .htaccess file:</p>
<p>DirectoryIndex filename.html</p>
<p>Then a request for http://domain-name.net/ would return  http://domain-name.net/filename.html if it exists, or would list the  directory if it did not exist.</p>
<p>To automatically run a cgi script, add the following to the .htaccess file:</p>
<p>DirectoryIndex /cgi-local/index.pl</p>
<p>This would cause the CGI script /cgi-bin/index.pl to be executed.</p>
<p>If you place your .htaccess file containing the DirectoryIndex  specification in the root directory of your site, it will apply for all  sub-directories at your site.</p>
<p><strong> Preventing Hot Linking.</strong></p>
<p>Add the following to the .htaccess file:</p>
<p># Rewrite Rule for images<br />
RewriteCond %{HTTP_REFERER} &lt;URL of page accessing your domain&gt;<br />
RewriteRule ^(.*)$ http://&lt;same as above URL&gt;</p>
<p>You would replace the &lt;URL of page accessing your domain&gt;  above with the domain name and path of the page that is referring to  your domain. For example: www.theirdomain.com/users/mypage/</p>
<p>The RewriteCond directive states that if the {HTTP_REFERER}  matches the URL that follows, then use the RewriteRule directive. The  RewriteRule directive will redirect any reference back to the referring  web page.</p>
<p>Using the above you should, safely be able to publish your sites  on the internet knowing that you will not be privy to bandwidth thieves  via hotlinking and also, that you will not lose any traffic through  pages that are &#8216;not found&#8217;.</p>
<p>Article Written By Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/using-htaccess-effectively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Web Safe Color Palette</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/the-web-safe-color-palette/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/the-web-safe-color-palette/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 01:02:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=374</guid>
		<description><![CDATA[The &#8220;Web Safe&#8221; palette is a bit controversial. It is a set of 216 colors that are, supposedly, guaranteed to appear as intended on all graphical displays when used in HTML, CSS, and images embedded in Web pages. Many Web developers believe that sticking to these colors is one of the holiest commandments in the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The &#8220;Web         Safe&#8221; palette is a bit controversial. It is a set of 216 colors         that are, supposedly, guaranteed to appear as intended on all graphical         displays when used in HTML, CSS, and images embedded in Web pages. Many         Web developers believe that sticking to these colors is one of the         holiest commandments in the Web design scripture.</p>
<p>This was mostly a         concern when most computers had 8-bit color displays; these days, most         people run at 16-bit or 24-bit color. Although these bit-depths render         the Web Safe palette pointless, dithering and quantification bugs in         browsers and operating systems still cause problems in 16-bit displays         (16-bit display, also known as &#8220;High Color&#8221; mode or         &#8220;Thousands of Colors,&#8221; is generally problematic). Extensive         testing has led to a new palette, called &#8220;Really Safe,&#8221; whose         colors are guaranteed to appear correctly on all displays and all         browsers.</p>
<p>If you use different         colors than these, you might see images and backgrounds of the same         color appear at a slightly different tint, so that a &#8220;box&#8221;         will be visible around them if the background extends beyond the image&#8217;s         edges.</p>
<p>Below is the table of         &#8216;Web Safe&#8217; and &#8216;Really Safe&#8217; colors, you will see some of the color hex         codes are in red, these are &#8216;Really Safe&#8217; colors.</p>
<div>
<table width="90%">
<tbody>
<tr>
<th width="52">Code</th>
<th width="39">Color</th>
<th width="53">Code</th>
<th width="37">Color</th>
<th width="56">Code</th>
<th width="37">Color</th>
<th width="48">Code</th>
<th width="37">Color</th>
<th width="56">Code</th>
<th width="37">Color</th>
<th width="54">Code</th>
<th width="43">Color</th>
</tr>
<tr>
<td width="52"><span style="color: #ff0000;">000000</span></td>
<td width="39" bgcolor="#000000"></td>
<td width="53"><span style="color: #ff0000;">000033</span></td>
<td width="37" bgcolor="#000033"></td>
<td width="56">000066</td>
<td width="37" bgcolor="#000066"></td>
<td width="48">000099</td>
<td width="37" bgcolor="#000099"></td>
<td width="56">0000cc</td>
<td width="37" bgcolor="#0000cc"></td>
<td width="54"><span style="color: #ff0000;">0000FF</span></td>
<td width="43" bgcolor="#0000ff"></td>
</tr>
<tr>
<td width="52">003300</td>
<td width="39" bgcolor="#003300"></td>
<td width="53">003333</td>
<td width="37" bgcolor="#003333"></td>
<td width="56">003366</td>
<td width="37" bgcolor="#003366"></td>
<td width="48">003399</td>
<td width="37" bgcolor="#003399"></td>
<td width="56">0033cc</td>
<td width="37" bgcolor="#0033cc"></td>
<td width="54">0033ff</td>
<td width="43" bgcolor="#0033ff"></td>
</tr>
<tr>
<td width="52">006600</td>
<td width="39" bgcolor="#006600"></td>
<td width="53">006633</td>
<td width="37" bgcolor="#006633"></td>
<td width="56">006666</td>
<td width="37" bgcolor="#006666"></td>
<td width="48">006699</td>
<td width="37" bgcolor="#006699"></td>
<td width="56">0066cc</td>
<td width="37" bgcolor="#0066cc"></td>
<td width="54">0066ff</td>
<td width="43" bgcolor="#0066ff"></td>
</tr>
<tr>
<td width="52">009900</td>
<td width="39" bgcolor="#009900"></td>
<td width="53">009933</td>
<td width="37" bgcolor="#009933"></td>
<td width="56">009966</td>
<td width="37" bgcolor="#009966"></td>
<td width="48">009999</td>
<td width="37" bgcolor="#009999"></td>
<td width="56">0099cc</td>
<td width="37" bgcolor="#0099cc"></td>
<td width="54">0099ff</td>
<td width="43" bgcolor="#0099ff"></td>
</tr>
<tr>
<td width="52">00cc00</td>
<td width="39" bgcolor="#00cc00"></td>
<td width="53">00cc33</td>
<td width="37" bgcolor="#00cc33"></td>
<td width="56">00cc66</td>
<td width="37" bgcolor="#00cc66"></td>
<td width="48">00cc99</td>
<td width="37" bgcolor="#00cc99"></td>
<td width="56">00cccc</td>
<td width="37" bgcolor="#00cccc"></td>
<td width="54">00ccff</td>
<td width="43" bgcolor="#00ccff"></td>
</tr>
<tr>
<td width="52"><span style="color: #ff0000;">00FF00</span></td>
<td width="39" bgcolor="#00ff00"></td>
<td width="53">00ff33</td>
<td width="37" bgcolor="#00ff33"></td>
<td width="56"><span style="color: #ff0000;">00FF66</span></td>
<td width="37" bgcolor="#00ff66"></td>
<td width="48">00ff99</td>
<td width="37" bgcolor="#00ff99"></td>
<td width="56"><span style="color: #ff0000;">00FFCC</span></td>
<td width="37" bgcolor="#00ffcc"></td>
<td width="54"><span style="color: #ff0000;">00FFFF</span></td>
<td width="43" bgcolor="#00ffff"></td>
</tr>
<tr>
<td width="52">330000</td>
<td width="39" bgcolor="#330000"></td>
<td width="53">330033</td>
<td width="37" bgcolor="#330033"></td>
<td width="56">330066</td>
<td width="37" bgcolor="#330066"></td>
<td width="48">330099</td>
<td width="37" bgcolor="#330099"></td>
<td width="56">3300cc</td>
<td width="37" bgcolor="#3300cc"></td>
<td width="54">3300ff</td>
<td width="43" bgcolor="#3300ff"></td>
</tr>
<tr>
<td width="52">333300</td>
<td width="39" bgcolor="#333300"></td>
<td width="53">333333</td>
<td width="37" bgcolor="#333333"></td>
<td width="56">333366</td>
<td width="37" bgcolor="#333366"></td>
<td width="48">333399</td>
<td width="37" bgcolor="#333399"></td>
<td width="56">3333cc</td>
<td width="37" bgcolor="#3333cc"></td>
<td width="54">3333ff</td>
<td width="43" bgcolor="#3333ff"></td>
</tr>
<tr>
<td width="52">336600</td>
<td width="39" bgcolor="#336600"></td>
<td width="53">336633</td>
<td width="37" bgcolor="#336633"></td>
<td width="56">336666</td>
<td width="37" bgcolor="#336666"></td>
<td width="48">336699</td>
<td width="37" bgcolor="#336699"></td>
<td width="56">3366cc</td>
<td width="37" bgcolor="#3366cc"></td>
<td width="54">3366ff</td>
<td width="43" bgcolor="#3366ff"></td>
</tr>
<tr>
<td width="52">339900</td>
<td width="39" bgcolor="#339900"></td>
<td width="53">339933</td>
<td width="37" bgcolor="#339933"></td>
<td width="56">339966</td>
<td width="37" bgcolor="#339966"></td>
<td width="48">339999</td>
<td width="37" bgcolor="#339999"></td>
<td width="56">3399cc</td>
<td width="37" bgcolor="#3399cc"></td>
<td width="54">3399ff</td>
<td width="43" bgcolor="#3399ff"></td>
</tr>
<tr>
<td width="52">33cc00</td>
<td width="39" bgcolor="#33cc00"></td>
<td width="53">33cc33</td>
<td width="37" bgcolor="#33cc33"></td>
<td width="56">33cc66</td>
<td width="37" bgcolor="#33cc66"></td>
<td width="48">33cc99</td>
<td width="37" bgcolor="#33cc99"></td>
<td width="56">33cccc</td>
<td width="37" bgcolor="#33cccc"></td>
<td width="54">33ccff</td>
<td width="43" bgcolor="#33ccff"></td>
</tr>
<tr>
<td width="52">33ff00</td>
<td width="39" bgcolor="#33ff00"></td>
<td width="53"><span style="color: #ff0000;">33FF33</span></td>
<td width="37" bgcolor="#33ff33"></td>
<td width="56"><span style="color: #ff0000;">33FF66</span></td>
<td width="37" bgcolor="#33ff66"></td>
<td width="48">33ff99</td>
<td width="37" bgcolor="#33ff99"></td>
<td width="56"><span style="color: #ff0000;">33FFCC</span></td>
<td width="37" bgcolor="#33ffcc"></td>
<td width="54"><span style="color: #ff0000;">33FFFF</span></td>
<td width="43" bgcolor="#33ffff"></td>
</tr>
<tr>
<td width="52">660000</td>
<td width="39" bgcolor="#660000"></td>
<td width="53">660033</td>
<td width="37" bgcolor="#660033"></td>
<td width="56">660066</td>
<td width="37" bgcolor="#660066"></td>
<td width="48">660099</td>
<td width="37" bgcolor="#660099"></td>
<td width="56">6600cc</td>
<td width="37" bgcolor="#6600cc"></td>
<td width="54">6600ff</td>
<td width="43" bgcolor="#6600ff"></td>
</tr>
<tr>
<td width="52">663300</td>
<td width="39" bgcolor="#663300"></td>
<td width="53">663333</td>
<td width="37" bgcolor="#663333"></td>
<td width="56">663366</td>
<td width="37" bgcolor="#663366"></td>
<td width="48">663399</td>
<td width="37" bgcolor="#663399"></td>
<td width="56">6633cc</td>
<td width="37" bgcolor="#6633cc"></td>
<td width="54">6633ff</td>
<td width="43" bgcolor="#6633ff"></td>
</tr>
<tr>
<td width="52">666600</td>
<td width="39" bgcolor="#666600"></td>
<td width="53">666633</td>
<td width="37" bgcolor="#666633"></td>
<td width="56">666666</td>
<td width="37" bgcolor="#666666"></td>
<td width="48">666699</td>
<td width="37" bgcolor="#666699"></td>
<td width="56">6666cc</td>
<td width="37" bgcolor="#6666cc"></td>
<td width="54">6666ff</td>
<td width="43" bgcolor="#6666ff"></td>
</tr>
<tr>
<td width="52">669900</td>
<td width="39" bgcolor="#669900"></td>
<td width="53">669933</td>
<td width="37" bgcolor="#669933"></td>
<td width="56">669966</td>
<td width="37" bgcolor="#669966"></td>
<td width="48">669999</td>
<td width="37" bgcolor="#669999"></td>
<td width="56">6699cc</td>
<td width="37" bgcolor="#6699cc"></td>
<td width="54">6699ff</td>
<td width="43" bgcolor="#6699ff"></td>
</tr>
<tr>
<td width="52">66cc00</td>
<td width="39" bgcolor="#66cc00"></td>
<td width="53">66cc33</td>
<td width="37" bgcolor="#66cc33"></td>
<td width="56">66cc66</td>
<td width="37" bgcolor="#66cc66"></td>
<td width="48">66cc99</td>
<td width="37" bgcolor="#66cc99"></td>
<td width="56">66cccc</td>
<td width="37" bgcolor="#66cccc"></td>
<td width="54">66ccff</td>
<td width="43" bgcolor="#66ccff"></td>
</tr>
<tr>
<td width="52"><span style="color: #ff0000;">66FF00</span></td>
<td width="39" bgcolor="#66ff00"></td>
<td width="53"><span style="color: #ff0000;">66FF33</span></td>
<td width="37" bgcolor="#66ff33"></td>
<td width="56">66ff66</td>
<td width="37" bgcolor="#66ff66"></td>
<td width="48">66ff99</td>
<td width="37" bgcolor="#66ff99"></td>
<td width="56">66ffcc</td>
<td width="37" bgcolor="#66ffcc"></td>
<td width="54"><span style="color: #ff0000;">66FFFF</span></td>
<td width="43" bgcolor="#66ffff"></td>
</tr>
<tr>
<td width="52">990000</td>
<td width="39" bgcolor="#990000"></td>
<td width="53">990033</td>
<td width="37" bgcolor="#990033"></td>
<td width="56">990066</td>
<td width="37" bgcolor="#990066"></td>
<td width="48">990099</td>
<td width="37" bgcolor="#990099"></td>
<td width="56">9900cc</td>
<td width="37" bgcolor="#9900cc"></td>
<td width="54">9900ff</td>
<td width="43" bgcolor="#9900ff"></td>
</tr>
<tr>
<td width="52">993300</td>
<td width="39" bgcolor="#993300"></td>
<td width="53">993333</td>
<td width="37" bgcolor="#993333"></td>
<td width="56">993366</td>
<td width="37" bgcolor="#993366"></td>
<td width="48">993399</td>
<td width="37" bgcolor="#993399"></td>
<td width="56">9933cc</td>
<td width="37" bgcolor="#9933cc"></td>
<td width="54">9933ff</td>
<td width="43" bgcolor="#9933ff"></td>
</tr>
<tr>
<td width="52">996600</td>
<td width="39" bgcolor="#996600"></td>
<td width="53">996633</td>
<td width="37" bgcolor="#996633"></td>
<td width="56">996666</td>
<td width="37" bgcolor="#996666"></td>
<td width="48">996699</td>
<td width="37" bgcolor="#996699"></td>
<td width="56">9966cc</td>
<td width="37" bgcolor="#9966cc"></td>
<td width="54">9966ff</td>
<td width="43" bgcolor="#9966ff"></td>
</tr>
<tr>
<td width="52">999900</td>
<td width="39" bgcolor="#999900"></td>
<td width="53">999933</td>
<td width="37" bgcolor="#999933"></td>
<td width="56">999966</td>
<td width="37" bgcolor="#999966"></td>
<td width="48">999999</td>
<td width="37" bgcolor="#999999"></td>
<td width="56">9999cc</td>
<td width="37" bgcolor="#9999cc"></td>
<td width="54">9999ff</td>
<td width="43" bgcolor="#9999ff"></td>
</tr>
<tr>
<td width="52">99cc00</td>
<td width="39" bgcolor="#99cc00"></td>
<td width="53">99cc33</td>
<td width="37" bgcolor="#99cc33"></td>
<td width="56">99cc66</td>
<td width="37" bgcolor="#99cc66"></td>
<td width="48">99cc99</td>
<td width="37" bgcolor="#99cc99"></td>
<td width="56">99cccc</td>
<td width="37" bgcolor="#99cccc"></td>
<td width="54">99ccff</td>
<td width="43" bgcolor="#99ccff"></td>
</tr>
<tr>
<td width="52">99ff00</td>
<td width="39" bgcolor="#99ff00"></td>
<td width="53">99ff33</td>
<td width="37" bgcolor="#99ff33"></td>
<td width="56">99ff66</td>
<td width="37" bgcolor="#99ff66"></td>
<td width="48">99ff99</td>
<td width="37" bgcolor="#99ff99"></td>
<td width="56">99ffcc</td>
<td width="37" bgcolor="#99ffcc"></td>
<td width="54">99ffff</td>
<td width="43" bgcolor="#99ffff"></td>
</tr>
<tr>
<td width="52">cc0000</td>
<td width="39" bgcolor="#cc0000"></td>
<td width="53">cc0033</td>
<td width="37" bgcolor="#cc0033"></td>
<td width="56">cc0066</td>
<td width="37" bgcolor="#cc0066"></td>
<td width="48">cc0099</td>
<td width="37" bgcolor="#cc0099"></td>
<td width="56">cc00cc</td>
<td width="37" bgcolor="#cc00cc"></td>
<td width="54">cc00ff</td>
<td width="43" bgcolor="#cc00ff"></td>
</tr>
<tr>
<td width="52">cc3300</td>
<td width="39" bgcolor="#cc3300"></td>
<td width="53">cc3333</td>
<td width="37" bgcolor="#cc3333"></td>
<td width="56">cc3366</td>
<td width="37" bgcolor="#cc3366"></td>
<td width="48">cc3399</td>
<td width="37" bgcolor="#cc3399"></td>
<td width="56">cc33cc</td>
<td width="37" bgcolor="#cc33cc"></td>
<td width="54">cc33ff</td>
<td width="43" bgcolor="#cc33ff"></td>
</tr>
<tr>
<td width="52">cc6600</td>
<td width="39" bgcolor="#cc6600"></td>
<td width="53">cc6633</td>
<td width="37" bgcolor="#cc6633"></td>
<td width="56">cc6666</td>
<td width="37" bgcolor="#cc6666"></td>
<td width="48">cc6699</td>
<td width="37" bgcolor="#cc6699"></td>
<td width="56">cc66cc</td>
<td width="37" bgcolor="#cc66cc"></td>
<td width="54">cc66ff</td>
<td width="43" bgcolor="#cc66ff"></td>
</tr>
<tr>
<td width="52">cc9900</td>
<td width="39" bgcolor="#cc9900"></td>
<td width="53">cc9933</td>
<td width="37" bgcolor="#cc9933"></td>
<td width="56">cc9966</td>
<td width="37" bgcolor="#cc9966"></td>
<td width="48">cc9999</td>
<td width="37" bgcolor="#cc9999"></td>
<td width="56">cc99cc</td>
<td width="37" bgcolor="#cc99cc"></td>
<td width="54">cc99ff</td>
<td width="43" bgcolor="#cc99ff"></td>
</tr>
<tr>
<td width="52">cccc00</td>
<td width="39" bgcolor="#cccc00"></td>
<td width="53">cccc33</td>
<td width="37" bgcolor="#cccc33"></td>
<td width="56">cccc66</td>
<td width="37" bgcolor="#cccc66"></td>
<td width="48">cccc99</td>
<td width="37" bgcolor="#cccc99"></td>
<td width="56">cccccc</td>
<td width="37" bgcolor="#cccccc"></td>
<td width="54">ccccff</td>
<td width="43" bgcolor="#ccccff"></td>
</tr>
<tr>
<td width="52">ccff00</td>
<td width="39" bgcolor="#ccff00"></td>
<td width="53">ccff33</td>
<td width="37" bgcolor="#ccff33"></td>
<td width="56"><span style="color: #ff0000;">CCFF66</span></td>
<td width="37" bgcolor="#ccff66"></td>
<td width="48">ccff99</td>
<td width="37" bgcolor="#ccff99"></td>
<td width="56">ccffcc</td>
<td width="37" bgcolor="#ccffcc"></td>
<td width="54">ccffff</td>
<td width="43" bgcolor="#ccffff"></td>
</tr>
<tr>
<td width="52"><span style="color: #ff0000;">FF0000</span></td>
<td width="39" bgcolor="#ff0000"></td>
<td width="53"><span style="color: #ff0000;">FF0033</span></td>
<td width="37" bgcolor="#ff0033"></td>
<td width="56">ff0066</td>
<td width="37" bgcolor="#ff0066"></td>
<td width="48">ff0099</td>
<td width="37" bgcolor="#ff0099"></td>
<td width="56">ff00cc</td>
<td width="37" bgcolor="#ff00cc"></td>
<td width="54"><span style="color: #ff0000;">FF00FF</span></td>
<td width="43" bgcolor="#ff00ff"></td>
</tr>
<tr>
<td width="52">ff3300</td>
<td width="39" bgcolor="#ff3300"></td>
<td width="53">ff3333</td>
<td width="37" bgcolor="#ff3333"></td>
<td width="56">ff3366</td>
<td width="37" bgcolor="#ff3366"></td>
<td width="48">ff3399</td>
<td width="37" bgcolor="#ff3399"></td>
<td width="56">ff33cc</td>
<td width="37" bgcolor="#ff33cc"></td>
<td width="54">ff33ff</td>
<td width="43" bgcolor="#ff33ff"></td>
</tr>
<tr>
<td width="52">ff6600</td>
<td width="39" bgcolor="#ff6600"></td>
<td width="53">ff6633</td>
<td width="37" bgcolor="#ff6633"></td>
<td width="56">ff6666</td>
<td width="37" bgcolor="#ff6666"></td>
<td width="48">ff6699</td>
<td width="37" bgcolor="#ff6699"></td>
<td width="56">ff66cc</td>
<td width="37" bgcolor="#ff66cc"></td>
<td width="54">ff66ff</td>
<td width="43" bgcolor="#ff66ff"></td>
</tr>
<tr>
<td width="52">ff9900</td>
<td width="39" bgcolor="#ff9900"></td>
<td width="53">ff9933</td>
<td width="37" bgcolor="#ff9933"></td>
<td width="56">ff9966</td>
<td width="37" bgcolor="#ff9966"></td>
<td width="48">ff9999</td>
<td width="37" bgcolor="#ff9999"></td>
<td width="56">ff99cc</td>
<td width="37" bgcolor="#ff99cc"></td>
<td width="54">ff99ff</td>
<td width="43" bgcolor="#ff99ff"></td>
</tr>
<tr>
<td width="52">ffcc00</td>
<td width="39" bgcolor="#ffcc00"></td>
<td width="53">ffcc33</td>
<td width="37" bgcolor="#ffcc33"></td>
<td width="56">ffcc66</td>
<td width="37" bgcolor="#ffcc66"></td>
<td width="48">ffcc99</td>
<td width="37" bgcolor="#ffcc99"></td>
<td width="56">ffcccc</td>
<td width="37" bgcolor="#ffcccc"></td>
<td width="54">ffccff</td>
<td width="43" bgcolor="#ffccff"></td>
</tr>
<tr>
<td width="52"><span style="color: #ff0000;">FFFF00</span></td>
<td width="39" bgcolor="#ffff00"></td>
<td width="53"><span style="color: #ff0000;">FFFF33</span></td>
<td width="37" bgcolor="#ffff33"></td>
<td width="56"><span style="color: #ff0000;">FFFF66</span></td>
<td width="37" bgcolor="#ffff66"></td>
<td width="48">ffff99</td>
<td width="37" bgcolor="#ffff99"></td>
<td width="56">ffffcc</td>
<td width="37" bgcolor="#ffffcc"></td>
<td width="54"><span style="color: #ff0000;">FFFFFF</span></td>
<td width="43" bgcolor="#ffffff"></td>
</tr>
</tbody>
</table>
</div>
<p>Hopefully, you will             find a use for the two different color palettes that are now             available and, you can begin designing for your surfers, regardless             of which browser they use.</p>
<p>Article             written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/the-web-safe-color-palette/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Curse Of The Broken Image</title>
		<link>http://directory.gaywidewebmasters.com/articles/2011/02/the-curse-of-the-broken-image/</link>
		<comments>http://directory.gaywidewebmasters.com/articles/2011/02/the-curse-of-the-broken-image/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 00:56:09 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[WebDesign]]></category>

		<guid isPermaLink="false">http://directory.gaywidewebmasters.com/articles/?p=362</guid>
		<description><![CDATA[At one time or another we have all done it, uploaded a new site only to find out that when we view the page in our browser one of the images are broken because we either didn&#8217;t link it properly or the filename wasn&#8217;t named correctly on our server. We may think that this is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>At one time or another we have all done it, uploaded a new site only to  find out that when we view the page in our browser one of the images are  broken because we either didn&#8217;t link it properly or the filename wasn&#8217;t  named correctly on our server.</p>
<p>We may think that this is a bad thing however, recent experimentation on my part has found quite the opposite.</p>
<p>We all search for new ways of getting the surfer to visit our  sponsors in order to have them buy a membership and earn us a nice  little slice of $$$ in the process but, what methods could we use that  quite simply are overlooked?</p>
<p>One such method is that of utilizing broken images, lets be  honest here, no-one wants broken image son their site, it makes the site  look unprofessional but, lets think about this, on a page full of  banners and graphics all nested together neatly on an FPA (Full Page Ad)  what&#8217;s more likely to grab the surfers attention, a completely loaded  heavy bandwidth graphic or a single solitary broken image placed in a  such a spot the surfer actually notices it?</p>
<p>Makes you think doesn&#8217;t it. Our recent testing of this method  has actually shown that our CTR (Click Through Ratio) rose slightly on a  couple of sponsors we used this method on all of the sites in question  had nice looking text and banners with corresponding thumbnails leading  tot he full size image but, upon deliberately leaving an image off the  server thus resulting in the &#8216;appearance&#8217; of an erroneous broken graphic  the spot where that image should have been was were a great deal of our  click throughs came from.</p>
<p>I am not saying you should immediately go and delete all  graphics from you pages but, a single, well placed broken image on a  free site can work wonders in getting traffic off your site and to your  sponsors pay site tour which ultimately, is what we want to happen at  the EARLIEST possible time.</p>
<p>Article written by Lee</p>
]]></content:encoded>
			<wfw:commentRss>http://directory.gaywidewebmasters.com/articles/2011/02/the-curse-of-the-broken-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
