<?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>Talk Binary &#187; Web Development</title>
	<atom:link href="http://talkbinary.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://talkbinary.com</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Wed, 15 Feb 2012 16:01:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>XAMPP &#8211; Apache distribution containing MySQL, PHP, and Perl</title>
		<link>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/</link>
		<comments>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 20:37:28 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[offline web server]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2780</guid>
		<description><![CDATA[XAMPP acts as a web server that allows you to serve dynamic pages on your computer. Its intended to be used as a development tool as it allows programmers to develop their work using Apache, MySQL, PHP and Perl without having access to the internet. It&#8217;s available for Windows, Linux, Solaris, and Mac OS X<a class="moretag" href="http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampplogo1.gif" alt="" title="xampplogo" width="200" height="59" class="alignnone size-full wp-image-2782" /><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> acts as a web server that allows you to serve dynamic pages on your computer. Its intended to be used as a development tool as it allows programmers to develop their work using Apache, MySQL, PHP and Perl without having access to the internet. It&#8217;s available for Windows, Linux, Solaris, and Mac OS X and is released under the terms of the GNU General Public License.</p>
<p>I&#8217;ve been using <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> for quite some time now since I&#8217;ve done a couple of web development projects already. If you don&#8217;t have some sort of web server on your computer, you won&#8217;t be able to test and run your web development projects offline if you are using MySQL or PHP for instance.<br />
<span id="more-2780"></span></p>
<h3 id="section-1">Installing XAMPP</h3>
<p>Installing <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is pretty straightforward. The website details you how to install XAMPP in a variety of ways for the different platforms. Then, once its installed, you simply place your web content in the <strong>\xampp\htdocs\</strong> location on your computer and access it via a browser using <strong>http://localhost/<file></strong> </p>
<h3 id="section-2">Hello World using XAMPP</h3>
<p>For example, lets create &#8220;Hello World&#8221; using XAMPP and some PHP.</p>
<p>1. Once you installed and are running <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>, create a file called <strong>test.php</strong> and place it inside <strong>\xampp\htdocs</strong>. </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampptestphp.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampptestphp.png" alt="" title="xampptestphp" width="554" height="380" class="alignnone size-full wp-image-2792" /></a></center></p>
<p>2. Then, simply copy and paste the following php code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hello World&quot;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworldphp.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworldphp.png" alt="" title="xampphelloworldphp" width="366" height="165" class="alignnone size-full wp-image-2791" /></a></center><br />
<br />
3. Open up a browser and go to the location <strong>http://localhost/test.php</strong>. You should see Hello World on the screen. Now, try right-clicking on the file and Open With -> <Any Browser>. Do you notice the difference? Depending on the platform and browser, it might not behave correctly.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworld.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworld-300x118.png" alt="" title="xampphelloworld" width="300" height="118" class="alignnone size-medium wp-image-2790" /></a></center><br />
<br/></p>
<h3 id="section-3">Overview of XAMPP</h3>
<p>If you have wanted to get into web development, you should try <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>. It&#8217;s fairly easy to install and use. I&#8217;ve been using it for quite some time and haven&#8217;t found a better replacement. </p>
<p>Want more tutorials on using XAMPP? Let me know. I plan on demonstrating how to create and manage a MySQL database and even setting up a <a href="http://wordpress.org">WordPress</a> blog using <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>.</p>
<p><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing the CSS Template to Make a Website</title>
		<link>http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/</link>
		<comments>http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 18:09:50 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[make a website]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1804</guid>
		<description><![CDATA[Getting ready to edit your template to make a website In this part of our series you will start editing your template to make your website. Don&#8217;t worry, I&#8217;ll guide you every step of the way so you don&#8217;t get lost. What do you need? The BigSpaceLove template found on Free-CSS-Templates A browser to open<a class="moretag" href="http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h4>Table of contents for Learn how to create a website series</h4>
Below is the complete list of entries to this series. 
<ol><li><a href='http://talkbinary.com/web-development/learn-how-to-create-a-website/' title='Learn how to create a website using a Template'>Learn how to create a website using a Template</a></li><li><a href='http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/' title='Understanding the Basic Structure of a Website'>Understanding the Basic Structure of a Website</a></li><li><a href='http://talkbinary.com/web-development/choosing-a-template-for-your-website/' title='Choosing a template for your website'>Choosing a template for your website</a></li><li><strong>Editing the CSS Template to Make a Website</strong></li></ol> </div> <h4 id="section-1">Getting ready to edit your template to make a website</h4>
<p>In this part of our series you will start editing your template to make your website. Don&#8217;t worry, I&#8217;ll guide you every step of the way so you don&#8217;t get lost. </p>
<hr />
<h3 id="section-2">What do you need?</h3>
<ol>
<li>The BigSpaceLove  template found on <a href="http://www.free-css-templates.com/">Free-CSS-Templates</a></li>
<li>A browser to open your website. (e.g. Internet Explorer, Firefox&#8230;)</li>
<li>A text editor to edit your website. Preferably one that supports syntax highlighting. <a href="http://www.pnotepad.org/">Programmer&#8217;s Notepad</a> is free and is what I&#8217;ll be using.</li>
</ol>
<p><br/></p>
<hr />
<h3 id="section-3">Start editing the template</h3>
<p>Open up <strong>index.html</strong> using your text editor. If you remember the basic structure of a website we taught you can notice that it is the same way the html file is structured. </p>
<ul>
<li>The <strong>header</strong> contains &#8220;Website Title&#8221; and &#8220;Subheader, website description H2&#8243; in this case</li>
<li>The <strong>body</strong>  is separated into a <strong>left</strong> section containing the content the and a <strong>right</strong> section containing the menu.</li>
<li>The <strong>footer</strong> contains information about the person who created the template.</li>
</ul>
<p>You will notice these sections are denoted with the following tag in the HTML document:</p>
<blockquote><h3 id="section-4">The &lt;div&gt; &lt;/div&gt; tag</h3>
<p>You can think of the div tag as a section within your HTML document. They will usually be named after the sections described above. </p></blockquote>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/06/structurebigspace1.jpg" alt="structurebigspace1" title="structurebigspace1" width="375" height="328" class="alignnone size-full wp-image-1831" /></center><br />
<span id="more-1804"></span></p>
<blockquote><h3 id="section-5">Making and viewing changes to your website</h3>
<p>To make a change, simply save the index.html file at any time. Then open it using any browser. Once the page is open, you can refresh it thereafter whenever you make a change to the html file.</p></blockquote>
<hr />
<h3 id="section-6">Changing the title of your website</h3>
<p>Let&#8217;s change the title of our website. Currently it says Big Space. Look for the following code in the html file.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;title&gt;Big Space&lt;/title&gt;</pre></div></div>

<p><br/><br />
It should be enclosed within the <head> </head> section. This section is used for placing information about the website such as meta tags, links to the css stylesheet, and the title of the site. </p>
<p>Let&#8217;s change the title to whatever you want. I&#8217;ll name it the following:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;title&gt;Let's talk Binary!&lt;/title&gt;</pre></div></div>

<p><br/></p>
<p>Now view the changes you have made using the steps I provided earlier. See what happened? The title of our website changed, this isn&#8217;t visible on the page itself but in your browser.</p>
<hr />
<h3 id="section-7">Editing the Header Section</h3>
<p>Now let&#8217;s go ahead and change the &#8220;Website Title&#8221;. Look for the following.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;h1&gt;&lt;a href=&quot;#&quot;&gt;Website Title&lt;/a&gt;&lt;/h1&gt;
&lt;h2&gt;Subheader, website description H2&lt;/h2&gt;</pre></div></div>

<p><br/><br />
I&#8217;ll be changing it to the following.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;h1&gt;&lt;a href=&quot;index.html&quot;&gt;Let's Talk Binary!&lt;/a&gt;&lt;/h1&gt;
&lt;h2&gt;Eliminating the barrier between code and people&lt;/h2&gt;</pre></div></div>

<p><br/></p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/06/bigspaceheader.jpg" alt="bigspaceheader" title="bigspaceheader" width="440" height="130" class="alignnone size-full wp-image-1855" /></center></p>
<p>If you noticed, I change &#8220;#&#8221; to &#8220;index.html&#8221; above. &#8220;Let&#8217;s Talk Binary!&#8221; is encapsulated with the &lt;a&gt; &lt;/a&gt; tag making it a link. Whenever you click on it, it will take you to the index.html page which is the current page your on.<br />
It is also encapsulated with the &lt;h1&gt; &lt;/h1&gt; tags, making it a header.  </p>
<blockquote><h3 id="section-8">The &lt;a&gt; &lt;h1&gt; tag</h3>
<p>The &lt;a&gt; seen is used to create a link to another document with the source being &#8220;index.html&#8221; in our case. </p>
<p>The &lt;h1&gt; tag defines headings. The values range from 1 to 6. 1 being the largest.</p></blockquote>
<p>Now save and view changes. Isn&#8217;t this easier than you thought? </p>
<hr/>
<h3 id="section-9">Go to the next page to learn how to edit the menu</h3>
<p>Now, go on to the next page to learn how to edit the menu.<br />
<br/></p>
 <div class='series_links'>Previous: <a href='http://talkbinary.com/web-development/choosing-a-template-for-your-website/' title='Choosing a template for your website'>Choosing a template for your website</a><br/><br/>
 </div>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a template for your website</title>
		<link>http://talkbinary.com/web-development/choosing-a-template-for-your-website/</link>
		<comments>http://talkbinary.com/web-development/choosing-a-template-for-your-website/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 06:46:19 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1789</guid>
		<description><![CDATA[Finding the right template Finding the correct template for your needs can be quite tricky. For example, I needed something clean and fresh while maintaining a level of professionalism so I decided to go with the layout found on my personal website. If you noticed, you can get a nice looking website once you find<a class="moretag" href="http://talkbinary.com/web-development/choosing-a-template-for-your-website/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h4>Table of contents for Learn how to create a website series</h4>
Below is the complete list of entries to this series. 
<ol><li><a href='http://talkbinary.com/web-development/learn-how-to-create-a-website/' title='Learn how to create a website using a Template'>Learn how to create a website using a Template</a></li><li><a href='http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/' title='Understanding the Basic Structure of a Website'>Understanding the Basic Structure of a Website</a></li><li><strong>Choosing a template for your website</strong></li><li><a href='http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/' title='Editing the CSS Template to Make a Website'>Editing the CSS Template to Make a Website</a></li></ol> </div> <h3 id="section-1">Finding the right template</h3>
<p>Finding the correct template for your needs can be quite tricky. For example, I needed something clean and fresh while maintaining a level of professionalism so I decided to go with the layout found on my <a href="http://www.cs.ucr.edu/~dvillase">personal website</a>. If you noticed, you can get a nice looking website once you find the right template. </p>
<p>But how did I find it first of all? I simply dug around the internet. <a href="http://google.com">Google</a> for me was a great place to start but for those that need help, I&#8217;ll show you a couple of sites that will give you a head start.</p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/06/picture-1.png" alt="picture-1" title="picture-1" width="450" height="168" class="alignnone size-full wp-image-1797" /></center></p>
<blockquote><h4 id="section-2">Note for tutorial</h4>
<p>For purposes of the tutorial I encourage everyone to use BigSpaceLove found on the front page of <a href="http://www.free-css-templates.com/">Free-CSS-Templates</a> so you can follow me step by step. This template is fairly easy to edit.</p></blockquote>
<h4 id="section-3">Where to find free CSS templates</h4>
<ul>
<li><a href="http://www.smashingmagazine.com/2008/12/01/100-free-high-quality-xhtmlcss-templates/">Smashing Magazine &#8211; 100 Free High Quality XHTML/CSS Templates</a> &#8211; Great list showing off a large variety of templates</li>
<li><a href="http://www.1stwebdesigner.com/resources/101-high-quality-css-and-xhtml-free-templates-and-layouts-part-1-2/">1st Web Designer- 101 High Quality CSS and XHTML Free Templates and Layouts</a> &#8211; Another great list you shouldn&#8217;t miss out on</li>
<li><a href="http://www.intensivstation.ch/en/templates/">Itensivstation &#8211; Basic CSS Templates</a> &#8211; For those who want to start from scratch check out these templates</li>
<li><a href="http://mitchbryson.com/free-css-templates">Mitch Bryson &#8211; Free CSS Templates</a> &#8211; More basic CSS templates</li>
<li><a href="http://www.freecsstemplates.org/">FreeCSSTemplates.org</a></li>
<li><a href="http://www.free-css-templates.com/">Free-CSS-Templates</a></li>
</ul>
<p><span id="more-1789"></span></p>
<hr />
<h3 id="section-4">So once I have a template what now?</h3>
<p>You are almost there. Once you have a template all we have to do is set up our environment, and start editing! (Remember, to use BigSpaceLove found on the front page of <a href="http://www.free-css-templates.com/">Free-CSS-Templates</a> so you can follow my tutorial step by step.)</p>
 <div class='series_links'>Previous: <a href='http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/' title='Understanding the Basic Structure of a Website'>Understanding the Basic Structure of a Website</a><br/><br/>
 Next: <a href='http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/' title='Editing the CSS Template to Make a Website'>Editing the CSS Template to Make a Website</a><br/><br/>
</div>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/choosing-a-template-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding the Basic Structure of a Website</title>
		<link>http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/</link>
		<comments>http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 20:51:22 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[structure of a site]]></category>
		<category><![CDATA[structure of a website]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1757</guid>
		<description><![CDATA[What is a website made out of anyways? If you take a good look at a couple of websites, you might notice their structures share a couple of things in common. (If you are wondering why you need to know this, you&#8217;ll learn why really soon.) Each website usually contains the following basic elements: A<a class="moretag" href="http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h4>Table of contents for Learn how to create a website series</h4>
Below is the complete list of entries to this series. 
<ol><li><a href='http://talkbinary.com/web-development/learn-how-to-create-a-website/' title='Learn how to create a website using a Template'>Learn how to create a website using a Template</a></li><li><strong>Understanding the Basic Structure of a Website</strong></li><li><a href='http://talkbinary.com/web-development/choosing-a-template-for-your-website/' title='Choosing a template for your website'>Choosing a template for your website</a></li><li><a href='http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/' title='Editing the CSS Template to Make a Website'>Editing the CSS Template to Make a Website</a></li></ol> </div> <h3 id="section-1">What is a website made out of anyways?</h3>
<p>If you take a good look at a couple of websites, you might notice their structures share a couple of things in common. (If you are wondering why you need to know this, you&#8217;ll learn why really soon.) Each website usually contains the following basic elements:</p>
<ul>
<li><b>A header</b> usually contains the logo of a website along with a brief description. Sometimes you may find a menu there as well.</li>
<li><b>The main body or content</b> which may take up most of the website which contains the content of the website.
<li><b>A sidebar</b> which usually contains the navigation of your website.
<li><b>A footer</b> which usually contains copyright and licensing information.</li>
</ul>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/05/csstemplates.jpg"></center></p>
<p>Not all websites follow this traditional structure. It all depends on what type of website you need to suit your needs. </p>
<hr />
<h3 id="section-2">So what is under the hood?</h3>
<p>So, what makes a website a website? Under the hood websites are made up of different coding languages that serve different purposes. I&#8217;ll only describe the basic ones you need to be aware of and will be working with. </p>
<p>Don&#8217;t worry, you don&#8217;t need to know anything. I&#8217;ll help you every step of the way.</p>
<h4 id="section-3">HTML</h4>
<p><strong>HTML</strong> stands for Hyper Text Markup Language. It consists of HTML tags that are used to mark up content and usually have a starting and ending tag. If you have worked with website development in the past, edited a profile on a social site such as MySpace you probably already are familiar with the basics of HTML. An example of HTML is below.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;This is the title of a website&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;This is a header&lt;/h1&gt;
&lt;p&gt;This is a paragraph&lt;/p&gt;
&nbsp;
&nbsp;
&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p><span id="more-1757"></span></p>
<p><i>Note: If you really wanted to, you could create an html document say, index.html, copy the above code into that document, save it, run it on firefox, and view your website!</i></p>
<h4 id="section-4">Cascading Style Sheets</h4>
<p><strong>CSS</strong> are Cascading Style Sheets. They can be embedded withing your website or be found in an external file (.css) that is linked to your website. You can think of them as style sheets. If you want to define or alter an attribute of an element of your website such as a font, image, link color, or any other element, you define it in the CSS document, and it would apply to all such elements on your site. I&#8217;ll show you an example later. </p>
<h4 id="section-5">XHTML</h4>
<p><strong>XHTML</strong> stands for Extensible HyperText Markup Language. It is more of a standard for writing in HTML. So if you see a website or layout saying its XHTML Compliant, well now you know why.</p>
<hr />
<h3 id="section-6">Ok, now what?</h3>
<p>Scared yet? Don&#8217;t worry. It will all make sense later. So what&#8217;s next? In the next tutorial I&#8217;ll help you find a template to start our website, then we&#8217;ll start editing it. Stay tuned for the next tutorial. If you have any comments or suggestions feel free to post them below.</p>
 <div class='series_links'>Previous: <a href='http://talkbinary.com/web-development/learn-how-to-create-a-website/' title='Learn how to create a website using a Template'>Learn how to create a website using a Template</a><br/><br/>
 Next: <a href='http://talkbinary.com/web-development/choosing-a-template-for-your-website/' title='Choosing a template for your website'>Choosing a template for your website</a><br/><br/>
</div>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn how to create a website using a Template</title>
		<link>http://talkbinary.com/web-development/learn-how-to-create-a-website/</link>
		<comments>http://talkbinary.com/web-development/learn-how-to-create-a-website/#comments</comments>
		<pubDate>Thu, 28 May 2009 08:06:04 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[create a website]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[cv]]></category>
		<category><![CDATA[design a website]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Learn how to create a website]]></category>
		<category><![CDATA[make a website]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1748</guid>
		<description><![CDATA[Getting started on your first website Ever wanted to create a website but had no idea where to get started? No worries, I&#8217;ll guide you through the simple process and it will require no prior experience. Is it really that easy? After you complete my series of tutorials, it sure will be. We&#8217;ll be using<a class="moretag" href="http://talkbinary.com/web-development/learn-how-to-create-a-website/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<div class='series_toc'><h4>Table of contents for Learn how to create a website series</h4>
Below is the complete list of entries to this series. 
<ol><li><strong>Learn how to create a website using a Template</strong></li><li><a href='http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/' title='Understanding the Basic Structure of a Website'>Understanding the Basic Structure of a Website</a></li><li><a href='http://talkbinary.com/web-development/choosing-a-template-for-your-website/' title='Choosing a template for your website'>Choosing a template for your website</a></li><li><a href='http://talkbinary.com/web-development/editing-the-css-template-to-make-a-website/' title='Editing the CSS Template to Make a Website'>Editing the CSS Template to Make a Website</a></li></ol> </div> <h4 id="section-1">Getting started on your first website</h4>
<p>Ever wanted to create a website but had no idea where to get started? No worries, I&#8217;ll guide you through the simple process and it will require no prior experience. Is it really that easy? After you complete my series of tutorials, it sure will be. We&#8217;ll be using the template BigSpaceLove found on <a href="http://www.free-css-templates.com/">Free-CSS-Templates</a> to create a simple personal website similar to my <a href="http://www.cs.ucr.edu/~dvillase/">personal website</a>.</p>
<p>You don&#8217;t need to know anything. I&#8217;ll even make sure you understand the fundamentals so you can continue learning more on your own afterwards. So no, you don&#8217;t need to know how to design a web page, or even how to code one. </p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/05/csstemplates.jpg" alt="csstemplates" title="csstemplates" width="400" height="345" class="alignnone size-full wp-image-1749" /><br />
<small>This series will teach you how to make a similar website pictured above</small></center><br />
<br/><br />
This series of tutorials will start by showing you where to find a template online (and for free!) so you can edit to your choosing. Remember, the product will only be limited by your imagination. </p>
<hr />
<h3 id="section-2">Why would I need a website anyways?</h3>
<p>First of all, a website might serve a great variety of purposes such as the following:</p>
<ul>
<li>You may post your resume, CV, or portfolio online to attract potential employers</li>
<li>Might want to share a hobby</li>
<li>Promote a product you are selling or endorsing</li>
<li>Start a community</li>
<li>Simply to learn!</li>
</ul>
<p>In reality, the possibilities are endless. It&#8217;s actually quite a good skill to have and it can pay off. While I was in highschool I managed to create websites and get paid pretty darn well for it since people think its more complicated than it looks.<br />
<span id="more-1748"></span><br />
If you are looking to simply learn, this is a great place to start. This will be a great hands on experience as you will be seeing progress rather quickly. It will also enable you to understand the fundamentals of the creation of a website.</p>
<hr />
<h3 id="section-3">Next tutorial shortly coming up</h3>
<p>Stay tuned and before you know it, you&#8217;ll have your very own personal website. If you have any questions or concerns, feel free to post them below. I&#8217;ll try to tailor this tutorial for beginners so if there is anything you want me to cover please leave a comment or suggestion. </p>
 <div class='series_links'> Next: <a href='http://talkbinary.com/web-development/understanding-the-basic-structure-of-a-website/' title='Understanding the Basic Structure of a Website'>Understanding the Basic Structure of a Website</a><br/><br/>
</div>]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/learn-how-to-create-a-website/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Browsershots &#8211; See shots of your website in multiple OS and Browsers</title>
		<link>http://talkbinary.com/web-development/browsershots-see-shots-of-your-website-in-multiple-os-and-browsers/</link>
		<comments>http://talkbinary.com/web-development/browsershots-see-shots-of-your-website-in-multiple-os-and-browsers/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 01:06:42 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[browsershot]]></category>
		<category><![CDATA[snapshots of website on multiple browsers]]></category>
		<category><![CDATA[test website]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=578</guid>
		<description><![CDATA[The ultimate test after you created your website, is to test it out using multiple browsers. Why? It might look great in Firefox but maybe not in Internet Explorer, Opera, Safari or Konquerer? Not your entire audience is going to use one browser. Browsershots Browsershots allows you to type in your website and choose from<a class="moretag" href="http://talkbinary.com/web-development/browsershots-see-shots-of-your-website-in-multiple-os-and-browsers/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>The ultimate test after you created your website, is to test it out using multiple browsers. Why? It might look great in Firefox but maybe not in Internet Explorer, Opera, Safari or Konquerer? Not your entire audience is going to use one browser. </p>
<h3 id="section-1">Browsershots</h3>
<p><a href="http://browsershots.org" rel="nofollow">Browsershots</a> allows you to type in your website and choose from a variety of operating systems and browsers. </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/browser.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/browser-300x101.png" alt="" title="browser" width="300" height="101" class="alignnone size-medium wp-image-579" /></a></center></p>
<p>Once you submit your request, you&#8217;ll be shown a page where you will have to wait for your request to complete. Meanwhile, you may refresh the page and see the progress. You&#8217;ll be seeing the browser shots as they finish. A problem I see though, is that sometimes the browser takes a snapshot before a page might finish loading. That might tell you, your site isn&#8217;t loading fast enough!</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/browsershots.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/browsershots-285x300.png" alt="" title="browsershots" width="285" height="300" class="alignnone size-medium wp-image-581" /></a></center></p>
<p>So what do you do if your site doesn&#8217;t look as it was supposed to? Work on it some more until it is compatible with the most browsers possible. That way you don&#8217;t lose any visitors in the future!</p>
<h3 id="section-2">Several Talk Binary Browser shots</h3>
<p>Below are several Talk Binary browser shots. As you can see, it appears the page hadn&#8217;t completely loaded before the shot was taken. Either way, its what I expected! </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/08/379bb120bb69222d3267b17c93c585fd.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/379bb120bb69222d3267b17c93c585fd-150x150.png" alt="" title="379bb120bb69222d3267b17c93c585fd" width="150" height="150" class="alignnone size-thumbnail wp-image-617" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/355c1ddb26f934f8d3b3a19821e0911d.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/355c1ddb26f934f8d3b3a19821e0911d-150x150.png" alt="" title="355c1ddb26f934f8d3b3a19821e0911d" width="150" height="150" class="alignnone size-thumbnail wp-image-616" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/08/27ca90974666d3b9d157354a4bd66dcf.png"><img src="http://talkbinary.com/wp-content/uploads/2008/08/27ca90974666d3b9d157354a4bd66dcf-150x150.png" alt="" title="27ca90974666d3b9d157354a4bd66dcf" width="150" height="150" class="alignnone size-thumbnail wp-image-615" /></a></center><br />
<span id="more-578"></span></p>
<h3 id="section-3">Stats concerning OS and Browsers of Talk Binary visitors</h3>
<p>I recently started using Google Analytics so these stats have accumulated about a month&#8217;s worth of visitors. I was surprised to see what Operating Systems and Browsers people used to browse my page. </p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/08/browseranalysis.png" alt="" title="browseranalysis" width="500" height="216" class="alignnone size-full wp-image-614" /></center></p>
<p>As you can see, Andy probably looks at Talk Binary on his iPhone using Safari, and you probably see my one time I used my Playstation 3 to view my site as well. Either way, it says it was viewed with a PS3 multiple times. Now that wasn&#8217;t me! This is why you must make sure your website is viewable on all browsers because your audience probably uses more than one option!</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/browsershots-see-shots-of-your-website-in-multiple-os-and-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to HTML</title>
		<link>http://talkbinary.com/web-development/introduction-to-html/</link>
		<comments>http://talkbinary.com/web-development/introduction-to-html/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 04:28:19 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[htm]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[introduction to html]]></category>
		<category><![CDATA[notepad]]></category>
		<category><![CDATA[start coding]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=574</guid>
		<description><![CDATA[So you want to learn how to code a website from the ground up? HTML is your start. What is HTML? HTML stands for Hyper Text Markup Language. It is the language that structures the format of a document with the following elements: links, images, text, and other objects. HTML files usually have an htm<a class="moretag" href="http://talkbinary.com/web-development/introduction-to-html/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>So you want to learn how to code a website from the ground up? HTML is your start. </p>
<h3 id="section-1">What is HTML?</h3>
<p>HTML stands for Hyper Text Markup Language. It is the language that structures the format of a document with the following elements: links, images, text, and other objects. </p>
<p>HTML files usually have an htm or html extension and can be created with any text editor, including Notepad. </p>
<p><a href="http://www.pnotepad.org/" rel="nofollow">Programmer&#8217;s Notepad</a> is an excellent free program which provides you with a nice programming environment with syntax highlighting, opening multiple tabs under its window, templates and more. I use it when I edit simple HTML files. So check it out.</p>
<h3 id="section-2">Where do I start coding HTML?</h3>
<p>With Notepad, simply open a new file. Then go to File -> Save As. Choose <strong>All Files</strong> under Save as type. </p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/08/htmlsaveas.jpg" alt="" title="htmlsaveas" width="263" height="155" class="alignnone size-full wp-image-575" /></center></p>
<p>Then give your file the name <strong>homepage.html</strong>. Any name with the <strong>.html</strong> extension should work fine.<br />
<span id="more-574"></span><br />
<center><a href="http://talkbinary.com/wp-content/uploads/2008/08/htmlallfiles.jpg"><img src="http://talkbinary.com/wp-content/uploads/2008/08/htmlallfiles.jpg" alt="" title="htmlallfiles" width="160" height="52" class="alignnone size-full wp-image-576" /></a></center></p>
<p>Any other text editor can create HTML files the same way or provides you with HTML templates that will automatically give your file an .htm or .html extension.</p>
<h3 id="section-3">Coding your first homepage</h3>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&nbsp;
&lt;title&gt; Title of your first homepage&lt;/title&gt;
&nbsp;
&lt;/head&gt;
&lt;body&gt;
&nbsp;
Hello World! I finally found a way to talk to the internets...
&nbsp;
&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>Save it and you are done! Now simply, open up your html file using your favorite browser. Congratulations! You just created your first website! </p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/introduction-to-html/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: talkbinary.com @ 2012-05-21 19:11:54 -->
