<?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; make a website</title>
	<atom:link href="http://talkbinary.com/tag/make-a-website/feed/" rel="self" type="application/rss+xml" />
	<link>http://talkbinary.com</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Mon, 06 Feb 2012 17:01:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<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>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>
	</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-02-11 21:27:04 -->
