<?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>Vince Cutting</title>
	<atom:link href="http://www.vincecutting.co.uk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vincecutting.co.uk</link>
	<description>Sharing web design and development ideas</description>
	<lastBuildDate>Thu, 25 Aug 2011 22:46:08 +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>Fancy Unordered Lists (bullet points) using CSS</title>
		<link>http://www.vincecutting.co.uk/fancy-unordered-lists-bullet-points-using-css.html</link>
		<comments>http://www.vincecutting.co.uk/fancy-unordered-lists-bullet-points-using-css.html#comments</comments>
		<pubDate>Fri, 20 Mar 2009 20:20:57 +0000</pubDate>
		<dc:creator>Vince Cutting</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[bullets]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://www.vincecutting.co.uk/?p=68</guid>
		<description><![CDATA[Have you ever wanted to add fancy bullet points to your unordered lists in your(x)HTML but never knew how? The truth is, it&#8217;s actually really easy to achieve. All you need to do is add a CSS class to your unordered list and then use your CSS to add your chosen image as the bullet [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.vincecutting.co.uk/wp-content/uploads/css-icon.jpg" alt="" title="css-icon" width="150" height="100" class="alignleft size-full wp-image-66" />Have you ever wanted to add fancy bullet points to your unordered lists in your(x)HTML but never knew how? The truth is, it&#8217;s actually really easy to achieve. All you need to do is add a CSS class to your unordered list and then use your CSS to add your chosen image as the bullet points. In this post I&#8217;ll walk you through this step by step. First lets take a quick look at the list we&#8217;re going to be creating:</p>
<ul class="list-tick">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<p><span id="more-68"></span></p>
<h2>Step 1: Create your unordered list, ensuring you use a classname for the ul. </h2>
<p>OK the first step is to create your unordered list as normal, and to specify a classname on the ul element. In this example i am using a class name of &#8220;tick-list&#8221; as I&#8217;ll be using a tick image for my bullet point. The HTML code should look something like this:-</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">&lt;ul class=&quot;list-tick&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;li&gt;This is the first list item&lt;/li&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;li&gt;This is the second list item&lt;/li&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;li&gt;and this is the third list item&lt;/li&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/ul&gt;</div>
</li>
</ol>
</div>
<h2>Step 2: Add the CSS to specify your image to be used as a bullet point</h2>
<p>With our HTML list in place we now need to use our CSS to control how it will look. The following CSS will remove the default margin and padding for both the ul and li elements, remove the standard unordered list bullet points, indent the list items using some padding on the left, and finally place your chosen image as a background in the padded are at the left of the list item. Your CSS for this particular list should look something like this:-</p>
<div class="geshi no css">
<ol>
<li class="li1">
<div class="de1">ul<span class="re1">.list-tick</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">margin</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">padding</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">ul<span class="re1">.list-tick</span> li <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">margin</span><span class="sy0">:</span> <span class="nu0">0</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">padding</span><span class="sy0">:</span> <span class="re3">2px</span> <span class="nu0">0</span> <span class="re3">2px</span> <span class="re3">16px</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">list-style</span><span class="sy0">:</span> <span class="kw2">none</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">background</span><span class="sy0">:</span> <span class="kw2">url</span><span class="br0">&#40;</span><span class="st0">&#39;../images/list_icons/tick1.jpg&#39;</span><span class="br0">&#41;</span> <span class="kw2">no-repeat</span> <span class="kw1">top</span> <span class="kw1">left</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<h2>Step 3: Dont forget to add your bullet/tick image to your server where your CSS can find it.</h2>
<p>Of course the above HTML and CSS will not work without the image you want to use actually being available, so make sure you have them available on your server where your CSS can find them &#8211; you&#8217;ll also want to make sure that your image(s) are scaled down appropriately prior to using them, I have scaled down my bullet images to 12px x 12px so they should fit nicely beside standard sized text.</p>
<h2>Step 4: View your fancy new list</h2>
<p>OK, with the first 3 steps now completed, you should be ready to view you fancy new unordered list with customized bullet points, like so: </p>
<ul class="list-tick">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<h2>Step 5: Experiment with different images</h2>
<p>You can add as many different customised list classes and images as you like to your website. Below are a few more examples:-<br />
List with a &#8216;list-pin1&#8242; CSS class</p>
<ul class="list-pin1">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<p>Another list with a &#8216;list-pin2&#8242; CSS class</p>
<ul class="list-pin2">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<p>List with a &#8216;list-cross&#8217; CSS class</p>
<ul class="list-cross">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<p>List with a &#8216;list-note&#8217; CSS class</p>
<ul class="list-note">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<p>List with a &#8216;list-mark&#8217; CSS class</p>
<ul class="list-mark">
<li>This is the first list item</li>
<li>This is the second list item</li>
<li>and this is the third list item</li>
</ul>
<p>So, use your imagination, you can add bigger images if you&#8217;d like, you&#8217;ll probabally need uo use bigger li text though or more padding. Let me know if you come up with any stunning lists of your own.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincecutting.co.uk/fancy-unordered-lists-bullet-points-using-css.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to center a website accross all browsers using CSS</title>
		<link>http://www.vincecutting.co.uk/how-to-center-a-website-accross-all-browsers-using-css.html</link>
		<comments>http://www.vincecutting.co.uk/how-to-center-a-website-accross-all-browsers-using-css.html#comments</comments>
		<pubDate>Tue, 21 Oct 2008 22:23:41 +0000</pubDate>
		<dc:creator>Vince Cutting</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[webpage]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.vincecutting.co.uk/?p=46</guid>
		<description><![CDATA[Now I&#8217;m not sure about you, but I really do hate websites that are stuck on the left of the screen, and from talking to a few friends, I know I&#8217;m not alone with this pet hate. The thing is, that many beginner site designers may also dislike this left alignment, but simply do not [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.vincecutting.co.uk/wp-content/uploads/css-icon.jpg" alt="CSS" title="css-icon" width="150" height="100" class="alignleft size-full wp-image-66" />Now I&#8217;m not sure about you, but I really do hate websites that are stuck on the left of the screen, and from talking to a few friends, I know I&#8217;m not alone with this pet hate. The thing is, that many beginner site designers may also dislike this left alignment, but simply do not know how to make their site appear in the center of the screen, but others may have centered their site absolutely perfect in their favourite browser, but are totally unaware that it may not be centered in others.<br />
<span id="more-46"></span><br />
Today, I&#8217;d like to share my own method of centering your website in any browser using CSS &#8211; I&#8217;m going to be using CSS in the head of the HTML document today for simplicity, although ideally you should place it into an external/linked stylesheet on your own pages.</p>
<p>The trick to centering pages in all browsers is using what&#8217;s commonly known as a &#8216;wrapper&#8217;, applying some auto margin to that div in the CSS, and then using a small workaround so that the wrapper is centered in IE.</p>
<p>I&#8217;m going to start by using a basic outline template, demonstrating the basic page structure and illustrating what I mean buy the wrapper &#8211; which is commonly just a div to contain everything in.</p>
<div class="geshi no html4strict">
<ol>
<li class="li1">
<div class="de1"><span class="sc0">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; </span></div>
</li>
<li class="li1">
<div class="de1"><span class="sc0"> &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="kw2">&lt;html&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sc2"><span class="kw2">&lt;head&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;meta</span> <span class="kw3">http-equiv</span><span class="sy0">=</span><span class="st0">&quot;Content-Type&quot;</span> <span class="kw3">content</span><span class="sy0">=</span><span class="st0">&quot;text/html; charset=utf-8&quot;</span> <span class="sy0">/</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;title&gt;</span></span>Title<span class="sc2"><span class="kw2">&lt;/title&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;meta</span> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&quot;robots&quot;</span> <span class="kw3">content</span><span class="sy0">=</span><span class="st0">&quot;index, follow&quot;</span> <span class="sy0">/</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;meta</span> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&quot;keywords&quot;</span> <span class="kw3">content</span><span class="sy0">=</span><span class="st0">&quot;&quot;</span> <span class="sy0">/</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;meta</span> <span class="kw3">name</span><span class="sy0">=</span><span class="st0">&quot;description&quot;</span> <span class="kw3">content</span><span class="sy0">=</span><span class="st0">&quot;&quot;</span> <span class="sy0">/</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;style</span> <span class="kw3">type</span><span class="sy0">=</span><span class="st0">&quot;text/css&quot;</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;body, html {</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; margin: 0;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; padding: 0;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;}</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;#wrapper {</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; width: 800px; /* your wrapper obviously needs a width otherwise it will be 100% */</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; margin: 0 auto; /* This is the proper way to center in a standards compliant browser */</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;}</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;/* This is the IE workaround*/</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;body { text-align: center; }</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;#wrapper { text-align: left; }</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;/*Now to just add some colour to see it in action*/</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;body { background: #000; }</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;#wrapper { background: #fff; color: #000; }</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;/style&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sc2"><span class="kw2">&lt;/head&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sc2"><span class="kw2">&lt;body&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;div</span> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;wrapper&quot;</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="sc2"><span class="kw2">&lt;h1&gt;</span></span>Title<span class="sc2"><span class="kw2">&lt;/h1&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="sc2"><span class="kw2">&lt;p&gt;</span></span>Content to go here.<span class="sc2"><span class="kw2">&lt;/p&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="sc2"><span class="kw2">&lt;/div&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="sc2"><span class="kw2">&lt;/body&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="kw2">&lt;/html&gt;</span></span></div>
</li>
</ol>
</div>
<p>Now you can see the structure is fairly simple &#8211; the wrapper is just a div with a id of &#8220;wrapper&#8221;, which we specify a width for, and then set the margins to &#8220;0 auto&#8221;, which means no pixels for top and bottom margins, and auto for left and right margins. the auto value for margins basically gives the left and right edges equal space between the edge of the wrapper div and the edge of the browser window.</p>
<p>Next, we have to add the workaround for IE6, because it doesn&#8217;t understand auto as a value for margin. We basically do this by using text-align:center for the body to center the div on the page, but this will also center everything inside the div too, so we then have to re-align this to the left again using text-align:left for the div itself.</p>
<p>I&#8217;ve applied some background colours to the body and the div, so that you can see the centering effect for yourself &#8211; go ahead and try it for your own pages, and test it in different browsers&#8230;enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincecutting.co.uk/how-to-center-a-website-accross-all-browsers-using-css.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Running IE6, IE7 and IE8 on the same pc (even on Vista)</title>
		<link>http://www.vincecutting.co.uk/running-ie6-ie7-and-ie8-on-the-same-pc-even-on-vista.html</link>
		<comments>http://www.vincecutting.co.uk/running-ie6-ie7-and-ie8-on-the-same-pc-even-on-vista.html#comments</comments>
		<pubDate>Tue, 21 Oct 2008 12:20:15 +0000</pubDate>
		<dc:creator>Vince Cutting</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[ie8]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[multi ie]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.vincecutting.co.uk/?p=36</guid>
		<description><![CDATA[For many web designers and developers, getting a website to look and function the same in different browsers can often be a challenge. This challenge is often made even more difficult when trying to achieve the same appearance across Microsofts hugely different versions of it&#8217;s Internet Explorer browser &#8211; none of the IE browsers have [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-38" title="ie-tester-preview" src="http://www.vincecutting.co.uk/wp-content/uploads/ie-tester-preview.jpg" alt="" width="200" height="125" />For many web designers and developers, getting a website to look and function the same in different browsers can often be a challenge. This challenge is often made even more difficult when trying to achieve the same appearance across Microsofts hugely different versions of it&#8217;s Internet Explorer browser &#8211; none of the IE browsers have ever complied to web standards, and each different version comes with it&#8217;s own quirks to deal with. So you would think you could just install all the different versions and test your web pages in each of them&#8230;wrong, it&#8217;s often impossible to get all the different versions (namely IE6, IE7 and IE8) running on the same computer, especially if you are running Windows Vista which will not let you install IE6 at all.</p>
<p><span id="more-36"></span></p>
<p>For XP users, Tredsoft&#8217;s &#8220;Multi IE&#8221; (<a title="Multi IE from Tredsoft" href="http://tredosoft.com/Multiple_IE">http://tredosoft.com/Multiple_IE</a>) has been a godsend for a while now, although this solution still will not work on Windows Vista.</p>
<p>I stumbled accross something today, whilst searching for a solution to this Vista problem, and this solution will actually allow Vista users to preview web pages utilising a online rendering engine for IE5.5, IE6, IE7 and IE8beta2, all nicely packaged up into a single desktop application, which even allows you to view say a IE6 rendered page alongside a IE7 rendered version of the same page. This program is called &#8220;IE Tester&#8221; from <a title="My Debugbar" href="http://www.my-debugbar.com">www.my-debugbar.com</a>, and it absolutely blew me away when as found it, as it does exactly what I need (viewing pages under different Internet Explorer rendering engines) IN WINDOWS VISTA!</p>
<p>If you are suffering the nightmare scenario of needing to test website pages in different versions of Internet Explorer, but cant install all the different versions you need onto the same PC, and especially if you are needing to do this in Windows Vista, then I recommend you give IE Tester a try &#8211; it works like a dream for me, and saves me having to run a seperate XP computer just for testing.</p>
<p>You can download MyDebugbar&#8217;s &#8220;IE Tester&#8221; from the following link: <a title="Download IE Tester here!" href="http://www.my-debugbar.com/wiki/IETester/HomePage">http://www.my-debugbar.com/wiki/IETester/HomePage</a></p>
<div id="attachment_37" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.vincecutting.co.uk/wp-content/uploads/ie-tester-screenshot.jpg"><img class="size-medium wp-image-37" title="ie-tester-screenshot" src="http://www.vincecutting.co.uk/wp-content/uploads/ie-tester-screenshot-300x220.jpg" alt="IE Tester Screenshot" width="300" height="220" /></a><p class="wp-caption-text">IE Tester Screenshot</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.vincecutting.co.uk/running-ie6-ie7-and-ie8-on-the-same-pc-even-on-vista.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Where to start when creating an xHTML page</title>
		<link>http://www.vincecutting.co.uk/where-to-start-when-creating-an-xhtml-page.html</link>
		<comments>http://www.vincecutting.co.uk/where-to-start-when-creating-an-xhtml-page.html#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:02:04 +0000</pubDate>
		<dc:creator>Vince Cutting</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[outline]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.vincecutting.co.uk/?p=28</guid>
		<description><![CDATA[When I create a new xHTML/HTML page I like to start with a template where I can then fill in the blanks. My basic template will include the doctype for the document, the basic document tags (html, head, body, title etc), a link to my external stylesheet, and finally a &#8216;wrapper&#8217; div in the body [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.vincecutting.co.uk/wp-content/uploads/css-icon.jpg" alt="" title="css-icon" width="150" height="100" class="alignleft size-full wp-image-66" />When I create a new xHTML/HTML page I like to start with a template where I can then fill in the blanks. My basic template will include the doctype for the document, the basic document tags (html, head, body, title etc), a link to my external stylesheet, and finally a &#8216;wrapper&#8217; div in the body which makes things easier when specifying a width for you page or centering the layout. This is the basic framework for any xHTML document, and is the bare minimum you should start with.<br />
<span id="more-28"></span></p>
<p>The following code is my own basic xHTML template I use when creating static pages:</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&lt;html&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;title&gt;Title Here&lt;/title&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta name=&quot;robots&quot; content=&quot;index, follow&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;link rel=&quot;stylesheet&quot; href=&quot;css/styles.css&quot; type=&quot;text/css&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;/head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;div id=&quot;wrapper&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;&lt;h1&gt;Title Here&lt;/h1&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;&lt;p&gt;Some content here.&lt;/p&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;/div&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;/body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/html&gt;</div>
</li>
</ol>
</div>
<p>If you are using Aptana Studio to write your pages, then you can find a similar template under the HTML Snippets in the IDE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincecutting.co.uk/where-to-start-when-creating-an-xhtml-page.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aptana Studio&#8230;better than Dreamweaver, and FREE!</title>
		<link>http://www.vincecutting.co.uk/aptana-studio-better-than-dreamweaver-and-free.html</link>
		<comments>http://www.vincecutting.co.uk/aptana-studio-better-than-dreamweaver-and-free.html#comments</comments>
		<pubDate>Sat, 18 Oct 2008 22:28:37 +0000</pubDate>
		<dc:creator>Vince Cutting</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[aptana]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ide]]></category>

		<guid isPermaLink="false">http://www.vincecutting.co.uk/?p=6</guid>
		<description><![CDATA[To kick off my blog I&#8217;d like to share with you my IDE (Integrated Development Environment) of choice for writing and editing all of my website code. Now I have used Dreamweaver in the past and it is a fantastic product, but comes with a very hefty price tag that most beginners simply cant afford. [...]]]></description>
			<content:encoded><![CDATA[<p><span style="margin: 0pt 10px 0pt 0pt; float: left;"><img class="size-full wp-image-11" src="http://www.vincecutting.co.uk/wp-content/uploads/2008/10/aptana_logo.png" alt="Aptana Studio" width="200" height="89" /></span></p>
<p>To kick off my blog I&#8217;d like to share with you my IDE (Integrated Development Environment) of choice for writing and editing all of my website code.</p>
<p>Now I have used Dreamweaver in the past and it is a fantastic product, but comes with a very hefty price tag that most beginners simply cant afford. A little over a year ago, I was scanning the internet for a alternative to the industry-standard Dreamweaver, and after a few days of relentless searching and trying out many different programs, I came across <a title="visit Aptana.org and see for yourself" href="http://www.aptana.org" target="_blank">Aptana Studio</a> which ticked all the boxes of the features I needed in an IDE and appeared to be a suitable alternative to Dreamweaver, and best of all, it was (and still is) FREE.<span id="more-6"></span></p>
<p>I have used Aptana Studio ever since finding it, and very soon weened myself off Dreamweaver altogether. For writing and editing code and uploading it to your server it is an awesome program, and comes complete with syntax-highlighting (colorization of your code, so that you can more easily read it), FTP, plenty of pre-written code snippets for you to play with and learn from, code-assist (this is where the program actually helps you write your code by displaying tooltips as you type), as well as a browser preview view of your web page. All of that is built into the one program, and the whole thing is extremely customizable so you can tweak it to your own way of working.</p>
<div id="attachment_12" class="wp-caption aligncenter" style="width: 502px"><img class="size-full wp-image-12" title="Aptana Studio Preview" src="http://www.vincecutting.co.uk/wp-content/uploads/2008/10/studio-preview.jpg" alt="Aptana Studio Preview" width="492" height="370" /><p class="wp-caption-text">Aptana Studio Preview</p></div>
<p>Aptana Studio will happily work with all of your website files and will provide all the suitable code-coloring and code-assist for your HTML, CSS, PHP and Javascript files, all in one program.</p>
<p>Now Aptana Studio doesn&#8217;t have the fancy WYSIWYG (What You See Is What You Get) editors of Dreamweaver, but this is a feature I never used anyway as I always like to write my own code, so if that is a feature you rely on then Aptana Studio may not be for you, although you can still use if for editing your code and use something like Dreamweaver of NVU (free WYWSIWIG website editor program) when you really need to drag and drop things.</p>
<p>More recently I have totally uninstalled Dreamweaver, as I no longer have any need for it and Aptana Studio regularly release better and better updates and are constantly adding some excellent features (like the brand new Aptana Cloud and the Aptana Jaxer javascript server). I&#8217;d wholeheartedly recommend using Aptana Studio as a Dreamweaver alternative if you are serious about either learning to write websites, or building better websites.</p>
<p>I would give Aptana Studio 5 stars out of 5 for being the best IDE currently available&#8230;and its free (I know I&#8217;ve already told you it&#8217;s free, but it&#8217;s such an amazing program for free that it just needed repeating again).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincecutting.co.uk/aptana-studio-better-than-dreamweaver-and-free.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

