<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rene&#039;s Blog</title>
	<atom:link href="http://renejr.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://renejr.wordpress.com</link>
	<description>My Personal Blog, Reviews, and HTML Tutorials</description>
	<lastBuildDate>Tue, 07 Jul 2009 17:41:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='renejr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Rene&#039;s Blog</title>
		<link>http://renejr.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://renejr.wordpress.com/osd.xml" title="Rene&#039;s Blog" />
	<atom:link rel='hub' href='http://renejr.wordpress.com/?pushpress=hub'/>
		<item>
		<title>HTML Introductory Tutorial</title>
		<link>http://renejr.wordpress.com/2009/07/03/html-introductory-tutorial/</link>
		<comments>http://renejr.wordpress.com/2009/07/03/html-introductory-tutorial/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 18:20:52 +0000</pubDate>
		<dc:creator>renejr</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[introductory]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[platforms]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://renejr.wordpress.com/?p=32</guid>
		<description><![CDATA[Hello everyone, thank you for visiting my blog. As this is not only my first series of tutorials but actually my first tutorial i am going to try to be slow and steady. What is HTML I&#8217;ll start off by explaining what HTML actually is, HTML stands for Hyper Text Markup Language. Since HTML is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=renejr.wordpress.com&amp;blog=8289891&amp;post=32&amp;subd=renejr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, thank you for visiting my blog. As this is not only my first series of tutorials but actually my first tutorial i am going to try to be slow and steady.</p>
<p><strong>What is HTML</strong></p>
<p><strong> </strong></p>
<p>I&#8217;ll start off by explaining what HTML actually is, HTML stands for Hyper Text Markup Language. Since HTML is a markup languages it uses mark up tags to describe web pages but we&#8217;ll just call them HTML tags or just plain tags.</p>
<p><strong>Getting Started</strong></p>
<p>There are a lot of HTML/CSS text editors out there such as Coffee Cup or even the famous Dreamweaver, but I think its best to learn off a simple text editor such as<br />
Notepad or Text Editor for the mac simply because since a lot of these HTML/CSS editors end up actually doing the work for you without you actually having to learn<br />
the language. Now I know what you&#8217;re thinking &#8220;What&#8217;s wrong with that?&#8221; well let&#8217;s say you need to rebuild or save a web page from horrible coding it may be easy to<br />
have something  generate code for you but it will not be able to fix it for you.</p>
<p><strong>Creating XHTML/HTML Documents</strong></p>
<p>First open up your preferred text editor click on file -&gt; save as -&gt; filename.htm or filename.html, the difference between the two extensions date back to Windows 3.x,<br />
which only recognized 3 letter extensions, and the Mac which recognized the four letter extension. Today&#8217;s platforms recognize both.</p>
<p><strong>Document Tags and Elements</strong></p>
<p>Document tags identify each section of an HTML document. Both &lt;html&gt; and &lt;/html&gt; tags are required for a document to be valid.</p>
<ul>
<li><strong>&lt;html&gt; and &lt;/html&gt;</strong> The HTML tags define both the beginning and the ending of an HTML/XHTML document. All other tags including both Document tags andElements go between these two tags.</li>
<li><strong>&lt;head&gt;&lt;/head&gt;</strong> The head section of a page is where you place information that is not generally displayed on the page, but is still important to the page. For instanceif you have embedded style attributes that you want to effect the page, they will need to be placed between the &lt;head&gt;&lt;/head&gt; tags.</li>
<li><strong>&lt;title&gt;&lt;/title&gt;</strong> The title, which is included in the head of the document, does not actually render on to the page, but controls the text that displays in the Title bar of thebrowser window.</li>
<li><strong>&lt;body&gt;&lt;/body&gt;</strong> All the content including images, tables, information, links, and more must be located in between the body tags.</li>
</ul>
<p><strong>Basic HTML Code</strong></p>
<p>Below would be a basic HTML document including a simple line break and paragraph.</p>
<table border="0">
<tbody>
<tr>
<td style="background-color:#ccc;"><span style="color:#0000ff;">&lt;html&gt;</span></p>
<p><span style="color:#0000ff;">&lt;head&gt;</span></p>
<p><span style="color:#0000ff;">&lt;title&gt;</span>My First Web page <span style="color:#0000ff;">&lt;/title&gt;</span></p>
<p><span style="color:#0000ff;">&lt;/head&gt;</span></p>
<p><span style="color:#0000ff;">&lt;body&gt;</span></p>
<p>This is my very first line break  <span style="color:#0000ff;">&lt;br /&gt;</span></p>
<p>The text breaks one line then continues, if you were to add a second one on the same line it would break another line.<span style="color:#0000ff;">&lt;br /&gt;&lt;br /&gt;</span></p>
<p>Like This</p>
<p><span style="color:#0000ff;">&lt;p&gt;</span>This is my first paragraph did you see how it made its own line space?<span style="color:#0000ff;">&lt;/p&gt;</span></p>
<p><span style="color:#0000ff;">&lt;/body&gt;</span></p>
<p><span style="color:#0000ff;">&lt;/html&gt;</span></td>
</tr>
</tbody>
</table>
<p><em>To follow along on your text editor, just copy this code and click on file -&gt; save using either extension .html or .htm and then double click the file to open it on your preferred browser.</em></p>
<p><em> </em></p>
<p><em>Below is what you should see in your browser after testing your code.</em></p>
<p><em> </em></p>
<p><span style="color:#ff0000;">This is my very first line bre<span style="color:#ff0000;">a</span></span><span style="color:#ff0000;">k</span><br />
<span style="color:#ff0000;">The text breaks one line then continues, if you were to add a second one on the same line it would break another line.</span></p>
<div><span style="color:#ff0000;"> </span><span style="color:#ff0000;"></p>
<p></span></p>
<p><span style="color:#ff0000;">Like This</span></p>
<p><span style="color:#ff0000;">This is my first paragraph did you see how it made its own line space?</span></p>
<p><span style="color:#ff0000;"> </span></div>
<p><strong>Conclusion</strong></p>
<p><strong> </strong></p>
<p>Now that was easy wasn&#8217;t it? This was just an easy introductory tutorial, stay tuned to follow the next tutorial which will include lists, images, and hyperlinks.</p>
<p>Feel free to leave comments and feedback to help guide me in structuring these tutorials.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/renejr.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/renejr.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/renejr.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/renejr.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/renejr.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/renejr.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/renejr.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/renejr.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=renejr.wordpress.com&amp;blog=8289891&amp;post=32&amp;subd=renejr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://renejr.wordpress.com/2009/07/03/html-introductory-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cb515e6cfb1e5983eb695a0a60c43c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">renejr</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 3.5 Quick Review</title>
		<link>http://renejr.wordpress.com/2009/07/02/firefox-3-5-quick-review/</link>
		<comments>http://renejr.wordpress.com/2009/07/02/firefox-3-5-quick-review/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 17:17:24 +0000</pubDate>
		<dc:creator>renejr</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[3.5]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[browsing]]></category>
		<category><![CDATA[candidate]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://renejr.wordpress.com/?p=13</guid>
		<description><![CDATA[The browser wars continue with recent releases such as Google Chrome 2.0, Opera 10, Internet Explorer 8, but as usual the browser that stands out Mozilla Firefox, with its new 3.5 RC version. The version is a candidate and is not yet final. Chrome 2.0 vs Mozilla Firefox 3.5 RC Chrome seems to win the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=renejr.wordpress.com&amp;blog=8289891&amp;post=13&amp;subd=renejr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://3.bp.blogspot.com/_IKnt2jum2HE/Sko0hc9hx9I/AAAAAAAAAAM/UcTIM2CuXYw/s1600-h/spread-firefox.jpg"><img style="float:right;cursor:pointer;width:196px;height:200px;margin:0 0 10px 10px;" src="http://3.bp.blogspot.com/_IKnt2jum2HE/Sko0hc9hx9I/AAAAAAAAAAM/UcTIM2CuXYw/s200/spread-firefox.jpg" border="0" alt="" /></a><br />
<span style="font-size:100%;"><span style="font-family:arial;">The browser wars continue with recent releases such as </span></span><span style="font-weight:bold;font-family:arial;font-size:100%;">Google Chrome 2.0</span><span style="font-size:100%;"><span style="font-family:arial;">, </span></span><span style="font-weight:bold;font-family:arial;font-size:100%;">Opera 10</span><span style="font-size:100%;"><span style="font-family:arial;">, </span></span><span style="font-weight:bold;font-family:arial;font-size:100%;">Internet Explorer 8</span><span style="font-size:100%;"><span style="font-family:arial;">, but as usual the browser that stands out </span></span><span style="font-weight:bold;font-family:arial;font-size:100%;">Mozilla Firefox</span><span style="font-size:100%;"><span style="font-family:arial;">, with its new 3.5 RC version. The version is a candidate and is not yet final.</span></span></p>
<div style="text-align:center;font-family:arial;"><span style="font-weight:bold;font-size:100%;">Chrome 2.0</span><span style="font-weight:bold;font-size:100%;"> vs </span><span style="font-weight:bold;font-size:100%;">Mozilla Firefox 3.5 RC</span><span style="font-size:100%;"><br />
</span></div>
<p><span style="font-size:100%;"><br />
</span><span style="font-weight:bold;font-family:arial;font-size:100%;">Chrome </span><span style="font-size:100%;"><span style="font-family:arial;">seems to win the race here when it comes to browser speed, but remember this is just a candidate and we can hope to see more from the official release.</span></span></p>
<div style="text-align:center;font-family:arial;"><span style="font-weight:bold;font-size:100%;">Tab Tearing </span></div>
<p style="text-align:left;font-family:arial;"><span style="font-size:100%;">Some of the readers may be familiar with the tab tearing facility in the </span><span style="font-weight:bold;font-size:100%;">Google Chrome</span><span style="font-size:100%;">. The feature in a more exciting format is incorporated with the</span><span style="font-weight:bold;font-size:100%;"> Firefox 3.5</span><span style="font-size:100%;">. You can grab a tab and drag it a little out to create a new window. The reverse will also work. The similar operations can be found by right clicking on the tabs if you don’t like grabbing and dragging tabs.</span></p>
<p><span style="font-size:100%;"><br />
</span></p>
<div style="font-weight:bold;text-align:center;font-family:arial;"><span style="font-size:100%;">Private Browsing Mode</span></div>
<p style="text-align:left;font-family:arial;"><span style="font-size:100%;">The private mode will be of great use where security matters. For example in situations like buying gifts, any sensitive search, a quick mail check from friend’s browser, bill pavement etc you may find this private mode as a real blessing. You can enable and disable that mode according to the nature of work.</span></p>
<p style="text-align:center;font-weight:bold;font-family:arial;"><span style="font-size:100%;">Trace Monkey JavaScript Engine</span></p>
<p style="font-family:arial;"><span style="font-size:100%;">The JavaScript engine TraceMonkey installed to</span><span style="font-weight:bold;font-size:100%;"> Firefox 3.5</span><span style="font-size:100%;"> is 20 to 40 times faster than the SpiderMonkey engine installed in Firefox 3.</span></p>
<p style="text-align:center;font-family:arial;"><span style="font-weight:bold;font-size:100%;">Conclusion</span><span style="font-size:100%;"><br />
</span></p>
<p style="font-family:arial;"><span style="font-size:100%;">There&#8217;s no doubt </span><span style="font-weight:bold;font-size:100%;">Firefox </span><span style="font-size:100%;">remains the favorite open source browser. Even if </span><span style="font-weight:bold;font-size:100%;">Firefox 3.5 </span><span style="font-size:100%;">fails to deliver the speed it claimed, there&#8217;s a world of users who would stick to the open source browsers. However, given other features, it&#8217;s the speed of the browsers that appeals most. Now there&#8217;s a neck to neck race between the top browsers over speed. Well, you if view the top browsers in a race, it&#8217;s this way &#8211; </span><span style="font-weight:bold;font-size:100%;">Opera </span><span style="font-size:100%;">is speeding up, </span><span style="font-weight:bold;font-size:100%;">Firefox </span><span style="font-size:100%;">is just ahead but eventually </span><span style="font-weight:bold;font-size:100%;">Chrome </span><span style="font-size:100%;">finishes first. No doubt, </span><span style="font-weight:bold;font-size:100%;">Chrome </span><span style="font-size:100%;">is the fastest browser available right now. It&#8217;s high-time for </span><span style="font-weight:bold;font-size:100%;">Mozilla </span><span style="font-size:100%;">to stop bloating features to </span><span style="font-weight:bold;font-size:100%;">Firefox </span><span style="font-size:100%;">and focusing their energy on speed. Once they achieve that they would be free to work add their whims and fancies.</span></p>
<p><!--Session data--></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/renejr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/renejr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/renejr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/renejr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/renejr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/renejr.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/renejr.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/renejr.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=renejr.wordpress.com&amp;blog=8289891&amp;post=13&amp;subd=renejr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://renejr.wordpress.com/2009/07/02/firefox-3-5-quick-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cb515e6cfb1e5983eb695a0a60c43c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">renejr</media:title>
		</media:content>

		<media:content url="http://3.bp.blogspot.com/_IKnt2jum2HE/Sko0hc9hx9I/AAAAAAAAAAM/UcTIM2CuXYw/s200/spread-firefox.jpg" medium="image" />
	</item>
		<item>
		<title>How to plan your first website</title>
		<link>http://renejr.wordpress.com/2009/06/23/plan/</link>
		<comments>http://renejr.wordpress.com/2009/06/23/plan/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 06:45:46 +0000</pubDate>
		<dc:creator>renejr</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming languages]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Even after learning many coding languages, the hardest part for many web developers seems to be the planning stage. Here is what I choose to follow just to make it just a little bit more simple before I begin a project. Who One problem that I see too often is that developers often tend to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=renejr.wordpress.com&amp;blog=8289891&amp;post=1&amp;subd=renejr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Even after learning many coding languages, the hardest part for many web developers seems to be the planning stage.  Here is what I choose to follow just to make it just a little bit more simple before I begin a project.</p>
<p><span style="font-weight:bold;">Who</span><a href="http://www.victorleeseminars.com/images/stick_man_thinking_of_idea_ph5m.gif"><img style="float:right;cursor:pointer;width:161px;height:96px;margin:0 0 10px 10px;" src="http://www.victorleeseminars.com/images/stick_man_thinking_of_idea_ph5m.gif" border="0" alt="" /></a><br />
One problem that I see too often is that developers often tend to build websites based on what they like, based on the type of website you are making it is most likely going to be targeted do a certain group(s) of people. Do some research, fine out whats popular on whatever it may be you are doing for your website you want visitors that will often come back as well as refer new visitors to your website. Check out similar sites and see how they attract their audiences. Think as a visitor; What would you like change about the website? How can it improve?</p>
<p><span style="font-weight:bold;">Programming Languages</span><br />
There are many different programming languages that you may want to use base on the purpose of your site. Let me give you a quick and simple run down on some of the most often used languages.</p>
<ul>
<li><span style="font-weight:bold;">HTML</span> &#8211; <em>HyperText Markup Language</em> the authoring <a href="http://www.webopedia.com/TERM/H/language.htm">language</a> used to create <a href="http://www.webopedia.com/TERM/H/document.htm">documents</a> on the <a href="http://www.webopedia.com/TERM/H/World_Wide_Web.htm">World Wide Web</a>. HTML defines the structure and layout of a Web document by using a variety of <a href="http://www.webopedia.com/TERM/H/tag.html">tags</a> and <a href="http://www.webopedia.com/TERM/H/attribute.html">attributes</a>.<br />
<span style="font-weight:bold;"> </span></li>
<li><span style="font-weight:bold;">XHTML</span> &#8211; <span style="font-style:italic;">Extensible Hypertext Markup Language<br />
</span>a hybrid between <a href="http://www.webopedia.com/TERM/X/HTML.htm">HTML</a> and <a href="http://www.webopedia.com/TERM/X/XML.htm">XML</a> specifically designed for Net device displays.</li>
<li><span style="font-weight:bold;">CSS</span> &#8211; <span style="font-style:italic;">Cascading Style Sheet</span> used to format the layout of <a href="http://www.techterms.com/definition/webpage">Web pages</a>. They can be used to define text styles, table sizes, and other aspects of Web pages that previously could only be defined in a page&#8217;s <a href="http://www.techterms.com/definition/html">HTML</a>.</li>
<li><span style="font-weight:bold;">JavaScript</span> &#8211; developed by <a href="http://www.webopedia.com/TERM/J/Netscape.html">Netscape</a> to enable <a href="http://www.webopedia.com/TERM/J/World_Wide_Web.html">Web</a> authors to design interactive <a href="http://www.webopedia.com/TERM/J/web_site.html">sites</a>. Although it shares many of the features and structures of the full <a href="http://www.webopedia.com/TERM/J/Java.html">Java language</a>, it was developed independently. <span style="font-size:130%;"><a id="KonaLink0" class="kLink" style="text-decoration:underline!important;position:static;" href="http://www.webopedia.com/TERM/J/JavaScript.html#" target="undefined"><span style="font-weight:400;position:static;color:#b00000;font-family:serif;"><span class="kLink" style="border-bottom:1px solid blue;font-weight:400;position:static;color:#b00000;font-family:serif;">Javascript </span></span></a></span><a id="KonaLink0" class="kLink" style="text-decoration:underline!important;position:static;" href="http://www.webopedia.com/TERM/J/JavaScript.html#" target="undefined">can interact with </a><a href="http://www.webopedia.com/TERM/J/HTML.html">HTML</a> <a href="http://www.webopedia.com/TERM/J/source_code.html">source code</a>, enabling Web authors to spice up their sites with <a href="http://www.webopedia.com/TERM/J/dynamic.html">dynamic</a> content.<span style="font-size:130%;"><a id="KonaLink0" class="kLink" style="text-decoration:underline!important;position:static;" href="http://www.webopedia.com/TERM/J/JavaScript.html#" target="undefined"><span style="position:relative;">
<div id="preLoadLayer0" style="position:absolute;z-index:4000;top:-32px;left:-18px;display:none;"><img style="border:0 none;" src="http://kona.kontera.com/javascript/lib/imgs/grey_loader.gif" alt="" /></div>
<p></span></a></span></li>
<li><span style="font-weight:bold;">PHP</span> &#8211; <em>Hypertext Preprocessor</em>, an <a href="http://www.webopedia.com/TERM/P/open_source.html">open source</a>, <a href="http://www.webopedia.com/TERM/P/server_side.html">server-side</a>, <a href="http://www.webopedia.com/TERM/P/HTML.html">HTML</a> embedded scripting language used to create dynamic <a href="http://www.webopedia.com/TERM/P/web_page.html">Web pages</a>.</li>
</ul>
<p><span style="font-weight:bold;">Where</span><br />
Start thinking of what web host service you are going to choose. First off make sure it supports the languages you are using for your website. Try searching web host companies on your preferred browser and I would personally go for a company on the first page, now this is not to put down other companies because for all I know they may be running off the same servers, but the way I see it is more popular companies become and stay popular for a certain reason right?</p>
<p><span style="font-weight:bold;">Domain Name</span><br />
I personally prefer .COM domain names simply off experience learned from a friend, both him and another individual had the same name and they both happened to be web developers now my friend would really try and market him self creating business cards, street ads, and more but they did not seem to do much of a difference for him at least. Both my friend and the other free lance web designer had the same domain name with an exception that my friend was a .NET and he was a .COM our theory is that someone not familiar with your website mite not have a good chance of remembering your full domain name so they may take a guess but one thing they usually remember from the website is the .COM. He recently changed his domain name and seems to be doing a lot better. All in all this may not make a huge difference but it does not hurt to consider it!</p>
<p><span style="font-weight:bold;">Things to Remember</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">A site should                    be useful.</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">A site should                    have a purpose.</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">A site should                    operate quickly, pages should download fast.</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">A site should                    be structured to allow visitors to navigate with ease.</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">Graphics should                    be kept to a minimum to allow fast loading of your web pages.</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">Use standard                    headers and footers for each of your web pages..</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">Use the same                    background color throughout your site. (White is most common                    color)</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">Use the same                    color for your text throughout your site. . (Black is most common                    color).</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">Use a common                    font size and color for specialized text segments.</span></p>
<p align="justify"><span style="font-family:Verdana;font-size:85%;">Establish site                    wide consistency rules.</span></p>
<p><span style="font-family:Verdana;font-size:85%;">Keep it simple.</span></p>
<p><span style="font-family:Verdana;font-size:85%;"><span style="font-size:100%;">Well I hope i did my part in helping some of you out there seeking ideas on starting a website, just remember you can do it with time, patience, and of course researching the web.</span><br />
</span></p>
<p>// </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/renejr.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/renejr.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/renejr.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/renejr.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/renejr.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/renejr.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/renejr.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/renejr.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=renejr.wordpress.com&amp;blog=8289891&amp;post=1&amp;subd=renejr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://renejr.wordpress.com/2009/06/23/plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3cb515e6cfb1e5983eb695a0a60c43c1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">renejr</media:title>
		</media:content>

		<media:content url="http://www.victorleeseminars.com/images/stick_man_thinking_of_idea_ph5m.gif" medium="image" />

		<media:content url="http://kona.kontera.com/javascript/lib/imgs/grey_loader.gif" medium="image" />
	</item>
	</channel>
</rss>
