<?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>Luis Arana &#124; Web Designer, Web Developer, Multimedia Guru &#187; Web Development</title>
	<atom:link href="http://www.luisarana.com/blog/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.luisarana.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 07 Sep 2011 20:43:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How To Build a Basic CSS Layout</title>
		<link>http://www.luisarana.com/blog/2009/12/how-to-build-a-basic-css-layout/</link>
		<comments>http://www.luisarana.com/blog/2009/12/how-to-build-a-basic-css-layout/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 19:44:55 +0000</pubDate>
		<dc:creator>Luis Arana</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://luisarana.com/blog/?p=516</guid>
		<description><![CDATA[Creating websites without using tables for layouts by using CSS layouts is the new standard for commercial web development.  This article details how to create a basic 2 column CSS layout which you can use for future design projects. 1. Divide your page into sections &#8211; the &#60;div&#62; tags allows you to create seperate divisions [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-517" title="webdesign" src="http://luisarana.com/blog/wp-content/uploads/2009/12/webdesign.jpg" alt="webdesign" width="600" height="602" /></p>
<p>Creating websites without using tables for layouts by using CSS layouts is the new standard for commercial web development.  This article details how to create a basic 2 column CSS layout which you can use for future design projects.</p>
<p>1. Divide your page into sections &#8211; the &lt;div&gt; tags allows you to create seperate divisions on your web page. Each can be identified with a unique id. You can then add a style in CSS (called a selector) that specifically applies to the div of that id.</p>
<p>Remember to include the DOCTYPE (to render your page accurately in  browsers) and include meta tags in the          header of your document to enable search engines to spider your pages.</p>
<p>-wrapper: is the div that wraps around all the other divs like a container for the page elements.<br />
-header: defines the top banner of the page<br />
-main: defines the main content of the page<br />
-nav: defines the navigation of the page<br />
-footer: defines the footer and sub-navigation of the page</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;How to Build a Basic CSS Layout&lt;/title&gt;<br />
&lt;meta name=&#8221;Description&#8221; content=&#8221;How to Build a Basic CSS Layout&#8221; /&gt;<br />
&lt;meta name=&#8221;Keywords&#8221; content=&#8221;css layout&#8221; /&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243;&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;wrapper&#8221;&gt;<br />
&lt;div id=&#8221;header&#8221;&gt;<br />
&lt;h1&gt;How To Build a Basic CSS Layout&lt;/h1&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;nav&#8221;&gt;<br />
&lt;h2&gt;Navigation&lt;/h2&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;main&#8221;&gt;&lt;/div&gt;<br />
&lt;div id=&#8221;footer&#8221;&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>2. Create the CSS code &#8211; below is the CSS code that styles the page as a centered 2 column CSS layout with a navigation bar and a footer. The div#wrapper style creates the centered box which acts as a container for the rest of the page content. The width: 80% rule sets the width of the div. The background-color:#FFFFFF rule creates a white background for the div. The margin-top: 50px and margin-bottom: 50px rules create a space of 50 pixels for the top and bottom margins for the div itself.</p>
<p>The proper way to center a block-level element with CSS is to set margin-left: auto and margin-right: auto. This instructs the browser to automatically calculate equal margins for both sides, thus centering the div. The border: thin solid #000000 rule adds a border around the outer div. The rest of the CSS code styles the divs for the header, footer, nav, and main content.</p>
<p>The div#header and div#footer styles set margins and padding for those divs. In addition, div#header includes the text-align: center rule to center the header text, and div#footer includes the border-top: thin solid #000000 rule to create a border along the top edge of the div to replace the horizontal rule above the footer in the table-based layout.</p>
<p>The div#nav and div#main styles create the two columns in the middle of the centered box. In the div#nav style, the float: left rule pushes the div to the left side of its parent element (the wrapper div), and the width: 25% rule sets the div&#8217;s width to 25 percent of the parent element. With the nav div floated to the left and limited to a set width, it leaves room for the main div to move up to the right of the nav div, thus creating the two-column effect. The div#main style includes the margin-left: 30% rule to keep the main text aligned in a neat column instead of spreading out below the nav column. The main div&#8217;s left margin is set to a value slightly larger than the width of the nav div.</p>
<p>&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
body {<br />
background-color: #999999;<br />
font-size:12px;<br />
font-family:Verdana, Arial, Helvetica, sans-serif;<br />
}<br />
div#wrapper {<br />
width: 80%;<br />
background-color:#FFFFFF;<br />
margin-top: 50px;<br />
margin-bottom: 50px;<br />
margin-left: auto;<br />
margin-right: auto;<br />
padding: 0px;<br />
border: thin solid #000000;<br />
}<br />
div#header {<br />
padding: 15px;<br />
margin: 0px;<br />
text-align: center;<br />
}<br />
div#nav {<br />
width: 25%;<br />
padding: 10px;<br />
margin-top: 1px;<br />
float: left;<br />
}<br />
div#main {<br />
margin-left: 30%;<br />
margin-top: 1px;<br />
padding: 10px;<br />
}<br />
div#footer {<br />
padding: 15px;<br />
margin: 0px;<br />
border-top: thin solid #000000;<br />
}<br />
&#8211;&gt;<br />
&lt;/style&gt;</p>
<p>3. Create the side navigation menu &#8211; to build the left side navigation I use the normal CSS code for the different links ie</p>
<p>a:link {<br />
text-decoration: none;<br />
}<br />
a:visited {<br />
text-decoration: none;<br />
}<br />
a:hover {<br />
text-decoration: underline;<br />
color: #FF0000;<br />
}<br />
a:active {<br />
text-decoration: none;<br />
}</p>
<p>If links are placed elsewhere on the page they will inherit the same          properties as above..a blue link that hovers to red.</p>
<p>What if you wish to create another set of different colored links          that change color and are underlined when your mouse passes over them?</p>
<p>4. Create the bottom navigation &#8211; to include the navigation in the &lt;div id=&#8221;footer&#8221;&gt; section of the page, I use div#footer and code each link accordingly. To make the list go horizontally I use: display: inline;</p>
<p>div#footer ul li{<br />
color : #000000;<br />
background-color : transparent;<br />
display: inline;<br />
}</p>
<p>div#footer ul li a{<br />
color : #115EAC;<br />
background-color : transparent;<br />
text-decoration : none;<br />
}</p>
<p>div#footer ul li a:hover{<br />
text-decoration : underline;<br />
}<br />
&#8211;&gt;</p>
<p>Now that I have finished creating my style sheet I want to shorten the code on page by linking it to my external style sheet. Here&#8217;s how:</p>
<p>5. Create an external style sheet &#8211; copy and paste all the css code (without these tags: &lt;style type=&#8221;text/css&#8221;&gt;&lt;!&#8211; &#8211;&gt;&lt;/style&gt;) into notepad and name it something like &#8220;style sheet&#8221;. Place this style sheet between the head tags of your web page like this:</p>
<p>&lt;head&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;stylesheet.css&#8221; type=&#8221;text/css&#8221; /&gt;<br />
&lt;/head&gt;</p>
<p>This will reduce the code on your page so it will load fast plus the search engines can more easily spider your web page.</p>
<p>6. Add content to your page &#8211; after you have got your page looking correctly, you can add more content to it. Adjustments can easily be made to any style on the page (or your whole site) by simply editing one style sheet.</p>
<p>7. Upload your files &#8211; be sure to upload your web pages and style sheet to the root directory of your server.</p>
<p>8. Validate your code &#8211; be sure to validate your xhtml code: <a href="http://validator.w3.org/">http://validator.w3.org/</a> and css code: <a href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</a> and make corrections where necessary.</p>
<p>9. Check browser compatibility and screen resolution &#8211; check that your page renders well in the popular browsers (IE6, NN7, Firefox)</p>
<p>If you are beginning with CSS layouts, implement then slowly by making small changes to your pages i.e. creating a style sheet for your main headers and fonts only. As you become more familiar with CSS you may eventually build all your future sites with CSS layouts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luisarana.com/blog/2009/12/how-to-build-a-basic-css-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is CSS?</title>
		<link>http://www.luisarana.com/blog/2009/12/what-is-css/</link>
		<comments>http://www.luisarana.com/blog/2009/12/what-is-css/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 19:33:26 +0000</pubDate>
		<dc:creator>Luis Arana</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development. Web Design]]></category>

		<guid isPermaLink="false">http://luisarana.com/blog/?p=265</guid>
		<description><![CDATA[CSS was first developed in 1997, as a way for Web developers to define the look and feel of their Web pages. It was intended to allow developers to separate content from design so that HTML could perform more of the function that it was originally based on &#8211; the markup of content, without worry [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-282" title="main" src="http://luisarana.com/blog/wp-content/uploads/2009/12/main.gif" alt="main" width="400" height="350" /></p>
<p>CSS was first developed in 1997, as a way for Web developers to define the look and feel of their Web pages. It was intended to allow developers to separate content from design so that HTML could perform more of the function that it was originally based on &#8211; the markup of content, without worry about the design and layout.</p>
<p>CSS didn&#8217;t gain in popularity until around 2000, when Web browsers began using more than the basic font and color aspects of CSS. And now, all modern browsers support all of CSS Level 1, most of CSS Level 2, and some aspects of CSS Level 3.</p>
<p>Web Designers that don&#8217;t use CSS for their design and development of Web sites are rapidly becoming a thing of the past. And it is arguably as important to understand CSS as it is to know HTML &#8211; and some would say it was more important to know CSS.</p>
<h3>CSS is an Abbreviation</h3>
<p>It stands for Cascading Style Sheet.</p>
<p>Style sheet refers to the document itself. Style sheets have been used for document design for years. They are the technical specifications for a layout, whether print or online. Print designers use style sheets to insure that their designs are printed exactly to specifications. A style sheet for a Web page serves the same purpose, but with the added functionality of also telling the viewing engine (the Web browser) how to render the document being viewed.</p>
<p>Cascade is the special part. A Web style sheet is intended to cascade through a series of style sheets, like a river over a waterfall. The water in the river hits all the rocks in the waterfall, but only the ones at the bottom affect exactly where the water will flow. The same is true of the cascade in Web style sheets.</p>
<p>Every Web page is affected by at least one style sheet, even if the Web designer doesn&#8217;t apply any styles. This style sheet is the user agent style sheet &#8211; the default styles that the Web browser will use to display a page if no other instructions are provided. But if the designer provides other instructions, the browser needs to know which instructions have precedence.</p>
<p>For example, in my Web browser, the default font is &#8220;Times New Roman&#8221; size 16. But nearly no pages I visit display in that font family and size. This is because the cascade defines the second style sheets set by the designers to redefine the font size and family and override my Web browser&#8217;s defaults.</p>
<h3>Where is CSS Used?</h3>
<p>CSS is used to style Web pages. But there is more to it than that. CSS is used to style XHTML and XML markup. This means that anywhere you have XML markup (including XHTML) you can use CSS to define how it will look.</p>
<p>CSS is also used to define how Web pages should look when viewed in other media than a Web browser. For example, you can create a print style sheet that will define how the Web page should print out and another style sheet to display the Web page on a projector for a slide show.</p>
<h3>Why is CSS Important?</h3>
<p>CSS is one of the most powerful tools a Web designer can learn because with it you can affect the entire mood and tone of a Web site. Well written style sheets can be updated quickly and allow sites to change what is prioritized or valued without any changes to the underlying XHTML.</p>
<p>The challenge of CSS is that there is so much to learn. But it doesn&#8217;t seem like it. After all, there are only around 60 properties in CSS Level 1 and around 70 in CSS Level 2. Compared with the number of HTML tags and attributes to learn, that can feel like a cake walk.</p>
<p>But because CSS can cascade, and combine and browsers interpret the directives differently, CSS is more difficult than plain HTML. But once you start using it, you&#8217;ll see that harnessing the power of CSS will give you more options and allow you to do more and more things with your Web sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luisarana.com/blog/2009/12/what-is-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is AJAX?</title>
		<link>http://www.luisarana.com/blog/2009/12/what-is-ajax/</link>
		<comments>http://www.luisarana.com/blog/2009/12/what-is-ajax/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 19:33:02 +0000</pubDate>
		<dc:creator>Luis Arana</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[asynchronous]]></category>

		<guid isPermaLink="false">http://luisarana.com/blog/?p=263</guid>
		<description><![CDATA[The Simple Answer: Ajax is a technique using Javascript and HTML to change web pages without refreshing the page. The Complex Answer: Ajax (Asynchronous JavaScript and XML) is a method of building interactive applications for the Web that process user requests immediately. Ajax combines several programming tools including JavaScript, dynamic HTML (DHTML), Extensible Markup Language [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-284" title="ajax" src="http://luisarana.com/blog/wp-content/uploads/2009/12/ajax.png" alt="ajax" width="300" height="300" /></p>
<p>The Simple Answer:</p>
<p>Ajax is a technique using Javascript and HTML to change web pages without refreshing the page.</p>
<p>The Complex Answer:</p>
<p>Ajax (Asynchronous JavaScript and XML) is a method of building interactive applications for the Web that process user requests immediately. Ajax combines several programming tools including JavaScript, dynamic HTML (DHTML), Extensible Markup Language (XML), cascading style sheets (CSS), the Document Object Model (DOM), and the Microsoft object, XMLHttpRequest.  Ajax allows content on Web pages to update immediately when a user performs an action, unlike an HTTP request, during which users must wait for a whole new page to load. For example, a weather forecasting site could display local conditions on one side of the page without delay after a user types in a zip code.</p>
<p>Google Maps is one well-known application that uses Ajax. The interface allows the user to change views and manipulate the map in real time.  Ajax applications do not require installation of a plug-in, but work directly with a Web browser. Because of the technique&#8217;s reliance on XMLHttpRequest, early applications worked only with Microsoft&#8217;s Internet Explorer browser, but most other browsers now support Ajax.</p>
<p>Applications created with Ajax use an engine that acts as an intermediary between a user&#8217;s browser and the server from which it is requesting information. Instead of loading a traditional Web page, the user&#8217;s browser loads the Ajax engine, which displays the page the user sees. The engine continues to run in the background, using JavaScript to communicate with the Web browser. User input or clicking on the page sends a JavaScript call to the Ajax engine, which can respond instantly in many cases. If the engine needs additional data, it requests it from the server, usually using XML, while it is simultaneously updating the page.</p>
<p>Ajax is not a proprietary technology or a packaged product. Web developers have been using JavaScript and XML in combination for several years. Jesse James Garrett of the consultancy firm Adaptive Path is credited with coining the name &#8220;Ajax&#8221; as a shorthand way to refer to the specific technologies involved in a current approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luisarana.com/blog/2009/12/what-is-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Basics</title>
		<link>http://www.luisarana.com/blog/2009/12/seo-basics/</link>
		<comments>http://www.luisarana.com/blog/2009/12/seo-basics/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:56:24 +0000</pubDate>
		<dc:creator>Luis Arana</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://luisarana.com/articles/?p=59</guid>
		<description><![CDATA[Search Engine Optimization, also referred to as &#8220;SEO&#8221; is as much an art as a science and the standards and practices are ever changing. Every search engine and directory uses different algorithms and formulas to calculate a site&#8217;s position in their search results. Meta tags should be placed between the section of your HTML document. [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_60" class="wp-caption alignnone" style="width: 210px"><img class="size-full wp-image-60" title="Search Engine Optimization" src="http://luisarana.com/articles/wp-content/uploads/2009/12/St-Albans-Seo.jpg" alt="Search Engine Optimization" width="200" height="150" /><p class="wp-caption-text">Search Engine Optimization</p></div>
<p>Search Engine Optimization, also referred to as &#8220;SEO&#8221; is as much an art as a science and the standards and practices are ever changing. Every search engine and directory uses different algorithms and formulas to calculate a site&#8217;s position in their search results. Meta tags should be placed between the <head> </head> section of your HTML document.<br />
 <br />
Keywords<br />
When optimizing a site I generally try to use 25 keywords or less on the page. The first and most important keywords should be your individual brand and related terms, so if your site is called &#8220;Revolution Clothing&#8221;, your first keywords should look something like:<br />
<meta name="keywords" content="revolution clothing, revolution, clothes, revolutionary"><br />
The next words should be geographic and industry terms that fit your brand&#8230;<br />
urban wear, street clothes, new york, urban clothes, designer, ny, nyc, brooklyn&#8230;<br />
If you still haven&#8217;t reached your 25 keywords, use general industry words that you think people might seach for&#8230;.<br />
shirts, jackets, pants, hoodies, wrist bands, hats, caps<br />
So now you should have a basic keyword list to start with. We&#8217;ll refine these later when we look at our hit statistics and see which keywords are generating traffic and which aren&#8217;t. Your keywords should look something like this:<br />
<meta name="keywords" content="revolution clothing, revolution, clothes, revolutionary, urban wear, street clothes, new york, urban clothes, designer, ny, nyc, brooklyn, shirts, jackets, pants, hoodies, wrist bands, hats, caps"><br />
 <br />
Description<br />
SEO description tags should be customized for each individual page of your site. Properly implemented description tags can mean the difference between a click for your website or your competitor&#8217;s. Description tags are often the first impression your users will get of your website and the first information search engines will dipslay regarding your brand. Don&#8217;t make them too long or the will be shortened by search engines. Try to use 132 characters or less:<br />
<meta name="description" content="Revolution clothing is a fresh urban fashion line geared toward the streetwise hipster. Our line features pants, shirts, hats, accessories and more..."><br />
 <br />
Page Title<br />
Your page title is very important as it is the headline that will be displayed by search engines. It is given alot of weight by many search algorithms so make it as descriptive as possible. Your title tag is placed in the <head> section of your HTML document. It will look something like this:<br />
 </p>
<p>Website URL<br />
Most search engines also give weight to search results where the search terms are included in your website URL. Try to purchase a URL that identifies your brand or at least your industry. Here are some examples.<br />
www.revolutionclothing.com<br />
www.revolution-clothing.com<br />
www.revolutionnyc.com<br />
www.revolutionnewyork.com<br />
 <br />
Multimedia Content<br />
Unknown to the owners and operators of many sites, especially those with heavy flash, video and multimedia content, is that many sites that are beautiful to look at and highly informational are also invisible to search engines! Search engines rely on text based information and can&#8217;t see the content of your videos, flash presentations or images. That&#8217;s why it&#8217;s essential to code these multimedia features with search engine optimization in mind.<br />
If you are using flash in your site, It&#8217;s important to place some decriptive text in your page behind the flash content. Search engines can&#8217;t see the information that your flash file contains. If you make your site entirely in flash, it may appear to be a collection of blank pages to the search engine robots. Usually when embedding flash content into your site, you&#8217;ll see <object> and <embed> tags in the source code. Simply put your descriptive text before the</embed>tag for each flash file and that information will be invisible to users who have flash enabled but readable by search engines. This is a good practice because your users may not have flash installed or may be accessing your site from a mobile device without flash capabilities. They will also see the alternate text. Here&#8217;s an example:<br />
 <br />
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="32" height="32" title="My Flash"><param name="movie" value="myflash.swf" /><param name="quality" value="high" /><embed src="myflash.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi" type="application/x-shockwave-flash" width="32" height="32"><br />
TYPE DESCRIPTION TEXT HERE. Try to copy as much of the text in the flash file here as possible. you can use HTML to<i> deliver alternate</i> content as well.</embed> <br />
XML Sitemap<br />
You should create XML and HTML sitemaps for your site. Sitemaps are used in the search engine ranking process to find relevant search terms throughout your site. A well defined sitemap will ensure higher search results as well as establish your site as a leader in your industry, making search engines and directories more likely to provide extra emphasis and higher priority to your site. There are many automated sitemap creators available free online. You don&#8217;t need to know XML to implement one. Google&#8217;s webmaster tools is an excellent free service that will walk you through the process of creating and installing an XML sitemap.<br />
 <br />
Meta robots<br />
Search engines use automated programed called &#8220;robots&#8221; to &#8220;crawl&#8221; your site for information. creating what&#8217;s known as a robots.txt file on your server will help search engines to index your site properly. create a textfile and name it robots.txt . Upload it to the root level of your ftp directory. You can read more about cusomizing a robots.txt file for various purposes, but a basic robots file that will tell search engines to index your entire site would look like this:<br />
 <br />
User-Agent: *<br />
Allow: /<br />
 <br />
W3C validation<br />
While not every web designer is a hand coding HTML expert, it&#8217;s imporant that your site is as error free as possible. You can check the validity of your code by using the free validator at http://www.w3c.org .<br />
 <br />
Search engine and Internet Directory submission<br />
While search engine submission isn&#8217;t as important as it once was, It&#8217;s still a good idea to manually submit your site to search engines and directories. Everywhere there is a link to your site on the internet means more traffic for your site. There are automated search engine submission software available for free. It can put a link to your site on hundreds if not thousands of websites and bring in that extra traffic to your website. Akin to a press release, these submissions let the world know that your site is open for business. It also provides link-backs from these sites generating more traffic and increasing the chances of a higher ranking for your site.<br />
 <br />
Internet Link seeding<br />
Related to Search engine submission above, this process involves posting messages and comments on various websites, bulletin boards, and blogs mentioning your services and providing a link to your site. These &#8220;seeds&#8221; generate additional traffic for your website as well as increasing your page ranking in search engines. The more your site is mentioned in different websites on the web, the higher your search rankings and traffic will be. Go to message boards and blogs related to your industry and comment on some of the articles. You can mention your site and provide a link. Many of these sites allow a &#8220;signature&#8221; to be attached to your messages. Use a link to your site or even a banner as your signature and you&#8217;ll generate even more traffic.<br />
 <br />
Register for a free Google Analytics account<br />
Sset up a free account with Google that allows access to website traffic and statistical information in incredible detail. Google Analytics can deliver near real-time statistics that can provide essential feedback for your site. Analytics answer all of the following questions on a daily basis and provide detailed reports and graphs.<br />
How many people visit my site?<br />
What geographic locations are they visiting from?<br />
What are the keywords and phrases visitors are using to find me?<br />
What sites are sending me the most traffic?<br />
What devices, operation systems, and browsers are my visitors using?<br />
What are the most visited pages and features of my site?<br />
There is no &#8220;magic bullet&#8221; for search engine optimization and no company can guarantee a number 1 position for a particular word or phrase. Those that make such dubious claims should be viewed with suspicion. A good SEO strategy requires hard work, expertise, and persistence. Because of the nature of the world wide web it can take weeks or even months for even the best SEO practices to bear fruit, but when they do the results are well worth the effort.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luisarana.com/blog/2009/12/seo-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is XML?</title>
		<link>http://www.luisarana.com/blog/2009/12/what-is-xml/</link>
		<comments>http://www.luisarana.com/blog/2009/12/what-is-xml/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:52:11 +0000</pubDate>
		<dc:creator>Luis Arana</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://luisarana.com/articles/?p=54</guid>
		<description><![CDATA[XML is short for eXtensible Markup Language]]></description>
			<content:encoded><![CDATA[<div id="attachment_55" class="wp-caption alignnone" style="width: 310px"><img class="size-full wp-image-55" title="What is XML" src="http://luisarana.com/articles/wp-content/uploads/2009/12/xml1-300x202.gif" alt="What is XML?" width="300" height="202" /><p class="wp-caption-text">What is XML?</p></div>
<p>XML is short for e<strong>X</strong>tensible <strong>M</strong>arkup <strong>L</strong>anguage</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luisarana.com/blog/2009/12/what-is-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

