<?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; website</title> <atom:link href="http://talkbinary.com/tag/website/feed/" rel="self" type="application/rss+xml" /><link>http://talkbinary.com</link> <description>Programming Resources, Technology, Computers</description> <lastBuildDate>Fri, 30 Jul 2010 18:22:57 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.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 [...]]]></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/html-programming/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>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>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>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>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>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>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>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>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>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><h3  class="related_post_title">Related Posts</h3><ul
class="related_post"><li><a
href="http://talkbinary.com/web-development/html-programming/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> (2)</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> (0)</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> (0)</li><li><a
href="http://talkbinary.com/programming/ebooks/linux-101-hacks-free-e-book/" title="Linux 101 Hacks &#8211; Free e-book">Linux 101 Hacks &#8211; Free e-book</a> (2)</li><li><a
href="http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/" title="Wubi &#8211; Ubuntu Installer for Windows">Wubi &#8211; Ubuntu Installer for Windows</a> (0)</li><li><a
href="http://talkbinary.com/resources-online/photoxpress-free-stock-photography/" title="PhotoXpress &#8211; Free Stock Photography">PhotoXpress &#8211; Free Stock Photography</a> (0)</li><li><a
href="http://talkbinary.com/software/dia-diagram-creation-program-for-linux-unix-and-windows/" title="Dia &#8211; Diagram Creation Program for Linux, Unix and Windows">Dia &#8211; Diagram Creation Program for Linux, Unix and Windows</a> (2)</li><li><a
href="http://talkbinary.com/software/customization/dexpose2-reloaded-expose-your-windows-similar-to-a-mac/" title="DExposE2 Reloaded &#8211; Expose your Windows Similar to a Mac">DExposE2 Reloaded &#8211; Expose your Windows Similar to a Mac</a> (0)</li><li><a
href="http://talkbinary.com/gaming/pc-gaming-byte-talk/stepmania-dance-dance-revolution-pc-clone/" title="StepMania &#8211; Dance Dance Revolution PC Clone">StepMania &#8211; Dance Dance Revolution PC Clone</a> (1)</li><li><a
href="http://talkbinary.com/web-development/blogging-programming/create-your-blog-using-wordpress/" title="The What, Who, How, Where, &#038; Why of Blogging Series Part 1">The What, Who, How, Where, &#038; Why of Blogging Series Part 1</a> (1)</li></ul>]]></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 [...]]]></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/html-programming/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>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>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>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>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><h3  class="related_post_title">Related Posts</h3><ul
class="related_post"><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> (0)</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> (0)</li><li><a
href="http://talkbinary.com/web-development/html-programming/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> (2)</li><li><a
href="http://talkbinary.com/programming/google-maps-api/google-maps-api/" title="Google Maps API ">Google Maps API </a> (0)</li><li><a
href="http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/" title="Wubi &#8211; Ubuntu Installer for Windows">Wubi &#8211; Ubuntu Installer for Windows</a> (0)</li><li><a
href="http://talkbinary.com/resources-online/photoxpress-free-stock-photography/" title="PhotoXpress &#8211; Free Stock Photography">PhotoXpress &#8211; Free Stock Photography</a> (0)</li><li><a
href="http://talkbinary.com/software/adium-multiclient-instant-messenger/" title="Adium &#8211; Multiclient Instant Messenger">Adium &#8211; Multiclient Instant Messenger</a> (0)</li><li><a
href="http://talkbinary.com/software/streamripper-download-streams-using-winamp/" title="Streamripper &#8211; Download Streams using Winamp">Streamripper &#8211; Download Streams using Winamp</a> (2)</li><li><a
href="http://talkbinary.com/programming/ebooks/linux-101-hacks-free-e-book/" title="Linux 101 Hacks &#8211; Free e-book">Linux 101 Hacks &#8211; Free e-book</a> (2)</li><li><a
href="http://talkbinary.com/software/dia-diagram-creation-program-for-linux-unix-and-windows/" title="Dia &#8211; Diagram Creation Program for Linux, Unix and Windows">Dia &#8211; Diagram Creation Program for Linux, Unix and Windows</a> (2)</li></ul>]]></content:encoded> <wfw:commentRss>http://talkbinary.com/web-development/choosing-a-template-for-your-website/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 44/78 queries in 0.278 seconds using disk

Served from: talkbinary.com @ 2010-07-31 10:17:37 -->