<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>hooked Web Design</title>
	
	<link>http://www.hookedwebdesign.com</link>
	<description>Hooked Web Design Weblog</description>
	<pubDate>Sun, 01 Nov 2009 18:20:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/HookedWebDesign" /><feedburner:info uri="hookedwebdesign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>40.770042</geo:lat><geo:long>-73.11376</geo:long><item>
		<title>XHTML STRICT vs XHTML TRANSITIONAL</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/WFU1c1RP_-g/</link>
		<comments>http://www.hookedwebdesign.com/blog/xhtml-strict-vs-xhtml-transitional/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 20:20:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[XHTML STRICT vs XHTML TRANSITIONAL]]></category>

		<guid isPermaLink="false">http://www.hookedwebdesign.com/?p=553</guid>
		<description><![CDATA[XHTML is a number of document types that reproduce, branch, and broaden HTML4. It is designed to work in conjunction with XML-based user agents. Most often times XHTML is viewed as a stricter version of HTML.

The major difference between XHTML and HTML4 reside in:
 1) All documents must be well formed.
&#60;p&#62;This day is &#60;em&#62;nice&#60;/em&#62;&#60;/p&#62;  [...]]]></description>
			<content:encoded><![CDATA[<p>XHTML is a number of document types that reproduce, branch, and broaden HTML4. It is designed to work in conjunction with XML-based user agents. Most often times XHTML is viewed as a stricter version of HTML.<br />
<span id="more-553"></span></p>
<p>The major difference between XHTML and HTML4 reside in:</p>
<li> 1) All documents must be well formed.</li>
<p>&lt;p&gt;This day is &lt;em&gt;nice&lt;/em&gt;&lt;/p&gt;    <b>GOOD.</b><br />
&lt;p&gt;This day is &lt;em&gt;nice&lt;/p&gt;&lt;/em&gt;     <b>BAD.</b>   </p>
<li> 2) Elements and Attributes must be in lowercase:</li>
<p>&lt;li&gt; is different from &lt;LI&gt;</p>
<li> 3) End tags are required for non empty elements:</li>
<p>&lt;p&gt;This day is nice&lt;/p&gt; &lt;p&gt;The sun is out&lt;/p&gt;     <b>GOOD.</b><br />
&lt;p&gt;This day is nice&lt;/p&gt; The sun is out    <b>BAD.</b></p>
<li> 4) Attribute values must be quoted </li>
<p>&lt;td rowspan=&quot;3&quot;&gt;         <b>GOOD</b><br />
&lt;td rowspan=3&gt;                     <b>BAD</b></p>
<li> 5) Empty Elements must either have an end tag orthe start tag must end with /&gt;</li>
<p>&lt;hr&gt;&lt;/hr&gt; or &lt;br /&gt; &lt;hr /&gt;     <b>Good</b><br />
&lt;br&gt; &lt;hr&gt;       <b>BAD</b>
</p>
<p>XHTML comes in two flavors <b>strict</b> and <b>conditional</b>.</p>
<p>XHTML Transitional may be used when you are making a change from an old markup to a more efficient modern one, or when you are left with an inherited markup that is not easily converted to comply with a strict DOCTYPE.</p>
<p>With all that has been said, one should always aim for XHTML Strict Markup.</p>
<p>XHTML Strict enforces the strict separation of document structure and document presentation. What i mean by that is the that the document presentation should be left or must be solely handled by CSS. Another benefit of using Strict XHTML is that web browser use their most standard compliant rendering modes while rendering your pages.</p>
<h2>Elements that are not allowed in Strict DOCTYPEs:</h2>
<li>center, font, iframe, strike, u.</li>
<h2>Attributes not allowed in Strict DOCTYPEs:</h2>
<li>align (allowed on elements related to tables: col, colgroup, tbody, td, tfoot, th, thead, and tr)</li>
<li>language, background, bgcolor, hspace, noshade, nowrap, target, text, link, vlink, and alink, vspace</li>
<li>border (allowed on table)</li>
<li>height (allowed on img and object)</li>
<li>name (allowed in HTML 4.01 Strict, not allowed on form and img in XHTML 1.0 Strict)</li>
<li>width (allowed on img, object, table, col, and colgroup)</li>
<h2>Contextual Differences:</h2>
<li>text and images need to be contained in a block level element like p or div ie:<br />
 &lt;div id=&quot;div-example&quot;&gt;<br />
                     &lt; img src=&quot;#&quot; /&gt;<br />
    &lt;/div&gt;</li>
<li>text in blockquote elements must be wrapped in a block level element like p or div</li>
<li>input elements must not be direct descendants of a form element</li>
<p>That&#8217;s All Folks</p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/WFU1c1RP_-g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/blog/xhtml-strict-vs-xhtml-transitional/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/blog/xhtml-strict-vs-xhtml-transitional/</feedburner:origLink></item>
		<item>
		<title>Disabling the Autosave Feature on Wordpress</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/BOuV-QirD38/</link>
		<comments>http://www.hookedwebdesign.com/blog/disabling-the-auto-save-feature-on-wordpress/#comments</comments>
		<pubDate>Sat, 23 May 2009 18:14:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Disabling the Autosave in Wordpress]]></category>

		<guid isPermaLink="false">http://www.hookedwebdesign.com/uncategorized/disabling-the-auto-save-feature-on-wordpress/</guid>
		<description><![CDATA[One of the features of Wordpress (version 2.5 to 2.7) is the Autosave feature. Many bloggers might find this feature attractive and swear by it's functionality, since it allows to track changes in a post. I, however find it very annoying, and want to disable it. This post will discuss how to successfully do so.]]></description>
			<content:encoded><![CDATA[<p>One of the features of Wordpress (version 2.5 to 2.7) is the Autosave feature. Many bloggers might find this feature attractive and swear by it&#8217;s functionality, since it allows to track changes in a post. I, however find it very annoying, and want to disable it. This post will discuss how to successfully do so.<br />
<span id="more-518"></span></p>
<p>The Autosave feature in Wordpress prevents bloggers from loosing their work by saving their blog edits. On the downside, every time you hit preview or save draft, Autosave  drops and cancels the most recent edits you have made to your post. So often times you find yourself posting inacurate and or incomplete blog posts and pages without even knowing about it. </p>
<p>During my quests to disable Autosave forever i found quite a few methods to accomplish this goal.</p>
<h2>1) Disable Autosave by tweaking some wp-admin/ directory files  </h2>
<p>Find the following four files in the wp-admin/ directory of your WordPress installation:</p>
<li>page-new.php
<li>page.php
<li>post-new.php
<li>post.php</li>
<p>and comment out the following line:</p>
<p>wp_enqueue_script(&#8217;autosave&#8217;)<br />
by changing it to:</p>
<p>//wp_enqueue_script(&#8217;autosave&#8217;)<br />
This will disable the autosave feature in the WordPress user interface.</p>
<p>I love this method, and it works just fine, however if you are not too familiar with .php files there is another method.</p>
<h2>2) Disable Autosave with the use of a plugin: </h2>
<p>if you&#8217; re not comfortable with PHP or your files, then you can also turn off Autosave Feature with this <a href="http://wordpress.org/extend/plugins/wp-cms-post-control/">Handy little plugin</a>.</p>
<p>This plugin allows you to:</p>
<li>Turn off the revisions feature completely, some people don&#8217;t want to use this. This is great when you are developing a site - why clutter up your database with loads of revisions when you don&#8217;t need them! Just turn them off whilst you are developing the site, then turn back on if you want the functionality back on site launch!</li>
<li>Turn off the auto save feature, some people have problems with this or don&#8217;t wish to be interrupted as they type.</li>
<p>That&#8217;s all folks</p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/BOuV-QirD38" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/blog/disabling-the-auto-save-feature-on-wordpress/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/blog/disabling-the-auto-save-feature-on-wordpress/</feedburner:origLink></item>
		<item><title>Links for 2009-05-22 [del.icio.us]</title><link>http://feedproxy.google.com/~r/HookedWebDesign/~3/t-XOLQs6nVM/nabsay</link><pubDate>Sat, 23 May 2009 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/nabsay#2009-05-22</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.hookedwebdesign.com/blog/best-search-engine-optimization-practices/"&gt;Best Search Engine Optimization Practices&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/t-XOLQs6nVM" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/nabsay#2009-05-22</feedburner:origLink></item><item>
		<title>Best Search Engine Optimization Practices</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/26RL7DIh5I0/</link>
		<comments>http://www.hookedwebdesign.com/blog/best-search-engine-optimization-practices/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 06:26:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Search Engine Optimization]]></category>

		<category><![CDATA[Search Engine Optimization Practices]]></category>

		<guid isPermaLink="false">http://localhost.local/Bluelight-Wordpress/?p=302</guid>
		<description><![CDATA[You built a website, and it looks great. One question remains though&#8230; How could you generate traffic?
You can do so by following three different paths:
Built it and then worry about search engine optimization.
Start with content then design the website around it.
Built your website hand in hand with search engine optimization.

As an experienced webmaster and website [...]]]></description>
			<content:encoded><![CDATA[<p>You built a website, and it looks great. One question remains though&#8230; How could you generate traffic?</p>
<p>You can do so by following three different paths:</p>
<li>Built it and then worry about search engine optimization.
<li>Start with content then design the website around it.
<li>Built your website hand in hand with search engine optimization.</li>
<p><span id="more-302"></span></p>
<p>As an experienced webmaster and website designer, i did it all, but found out that the best method is the last. It just saves you valuable time and get you to meet your traffic quotas.</p>
<p>Now the second question that comes to mind is how can one build a website with search engine optimization in mind? The answer lies within the way search engines rank your website.</p>
<p>Search engines rank your website based on many factors, and i will go over the 4 primary key ones.</p>
<li>Your Website code.
<li>Your website&#8217;s architecture.
<li>Your website&#8217;s content.
<li>Establishing Link popularity.</li>
<p>Let&#8217;s break down each one of these factors and see how you can help search engines index and rank your website high and fast.</p>
<h2><b>Website Code:</b></h2>
<h3>1) Title Tags: </h3>
<p>Your website must use unique and accurate title tags for each one of your websites&#8217; pages. This tag is extremely important because it will appear in all the search result. It helps users and search engines alike determine the relevancy of your pages within a particular search query. Your title tags have to be as descriptive as possible and include some of your web page&#8217;s keywords.</p>
<h3>2) Meta Description Tags: </h3>
<p>Your META descriptions give search engines a breakdown of what your pages are about. Try to make them as informative and relevant to the users as well as the search engines as possible.</p>
<h3>3) Meta Keywords: </h3>
<p>Your META keywords must not be broad and must have a good breakdown.</p>
<h3>4) Use of 301 redirects and htaccess files: </h3>
<p>Your website should use 301 redirects and .htaccess files. The reason behind this is, search engines will consider http://www.example.com and http://example.com as two different websites. This will lead to duplicate content in search engines and might cause your website to be penalized.  301 redirects and .htaccess will make that distinction obsolete.</p>
<h2><b>Website Architecture:</b></h2>
<h3>1) Website Navigation: </h3>
<p>Website navigation is important in search engine optimization because it allows visitors find the content they are searching for, and helps search engines understand your website&#8217;s structure. Adding CSS menu navigation, text links, and webpage breadcrumbs will make crawling your website much easier to search engines.</p>
<h3>2) The use of XML Sitemaps: </h3>
<p>Creating SEO friendly XML sitemaps will ensure search engines finding important pages on your website. There are many tools that will help with this, and one of my favorite tools to use is <a href="http://www.ragesw.com/products/googlesitemap.html" title="rage sitemap automator" >RAGE Sitemap Automator</a>. You should also include your sitemap&#8217;s location on your robot.txt files.</p>
<h3>3) Using SEO friendly URLs:</h3>
<p>Using SEO friendly urls will also ensure better crawling by search engines and better site organization. including relevant keywords in your urls display better and ranks higher in search engines. You can find many tutorials out there on how to create SEO friendly urls. In the coming days i will try to post a tutorial on how to achieve this purpose. </p>
<h2><b>Website Content:</b></h2>
<h3>1) Content:</h3>
<p>Creating compelling and useful content is an extremely important step in search engine optimization and improving your search engine visibility. High search engine ranking rarely comes without good content. It must also be keyword rich content. your keyword density should be set between 3% to 5% and your content language should be natural. MR GOOGLE is getting a lot smarter these days!</p>
<p>As an example let&#8217;s say that you content has 100 words. Then, according to this formula, your key keywords should be represented 3 to 5 times in your page.</p>
<p>It is also important to update your website&#8217;s content to increase the number of visits by search engine crawlers and spiders. You can achieve this by increasing you content, blog posts, use of social media such as Facebook and Myspace, email campaigns, and other more&#8230;</p>
<h2><b>Establishing Link Popularity:</b></h2>
<h3>Link Submission:</h3>
<p>Using directories such as DMOZ and any related niche web directory will lead to these directories indexing your website and hence help improve your website&#8217;s visibility.</p>
<h3>Text Link Exchange Programs:</h3>
<p>Exchanging text link with other highly ranking websites will send your website&#8217;s popularity to new heights and therefore achieve higher search engine rankings.</p>
<p>Thats all Folks!!!</p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/26RL7DIh5I0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/blog/best-search-engine-optimization-practices/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/blog/best-search-engine-optimization-practices/</feedburner:origLink></item>
		<item>
		<title>Precious Metal Recovery</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/enEBGWiwVWo/</link>
		<comments>http://www.hookedwebdesign.com/portfolio/precious-metal-recovery/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 00:59:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.hookedwebdesign.com/?p=357</guid>
		<description><![CDATA[Website design and development for Preciousmetalrecovery-ny.com . A simple website was required for this project to highlight this company's services on the web.]]></description>
			<content:encoded><![CDATA[<p><img class="image_portfolio_large" title="precious website design" src="http://www.hookedwebdesign.com/wp-content/themes/Bluelight/images/Precious_large.jpg" alt="precious website design" width="668" height="336" /></p>
<p><strong>The Client:</strong>Precious Metal Recovery<br />
A young a fresh precious metal recovery company located in Deer Park New York, with a sense of commitment to their customer base. </p>
<p><strong>The Website:</strong>  <a href="http://www.preciousmetalrecovery-ny.com" title="precious metal recovery website" target="blank" />www.preciousmetalrecovery-ny.com</a></p>
<p><strong>Project Description:</strong> Website design and development for Preciousmetalrecovery-ny.com . A simple website was required for this project to highlight this company&#8217;s services on the web.</p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/enEBGWiwVWo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/portfolio/precious-metal-recovery/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/portfolio/precious-metal-recovery/</feedburner:origLink></item>
		<item>
		<title>Steadiway</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/JJ37Ou-lMJM/</link>
		<comments>http://www.hookedwebdesign.com/portfolio/steadiway/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 01:34:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost.local/Bluelight-Wordpress/?p=93</guid>
		<description><![CDATA[Website design and development for Steadiway.net. A simple website was required for this project to showcase the work of this steadicam operator.]]></description>
			<content:encoded><![CDATA[<p><img class="image_portfolio_large" src="http://www.hookedwebdesign.com/wp-content/themes/Bluelight/images/Steadiway_large.jpg" alt="steadiway website design" width="668" height="336" /></p>
<p><strong>The Client:</strong> Steadiway</p>
<p><strong>The Website:</strong> <a href="http://www.Steadiway.net" title="steadiweay.net" target="blank" />www.Steadiway.net</a></p>
<p>Steadicam Owner/Operator &#038; Handsfree Transporter Owner/Operator located in the New York Tri-State Area.</p>
<p><strong>Project Description:</strong> Website design and development for Steadiway.net. A simple website was required for this project to showcase the work of this steadicam operator. </p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/JJ37Ou-lMJM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/portfolio/steadiway/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/portfolio/steadiway/</feedburner:origLink></item>
		<item>
		<title>AR Construction</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/bwF_e6pPF4Q/</link>
		<comments>http://www.hookedwebdesign.com/portfolio/ar-construction/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 21:35:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost.local/Bluelight-Wordpress/?p=88</guid>
		<description><![CDATA[Gallery driven website design and development for ArConstruction.us. A simple image driven website was required for this project.]]></description>
			<content:encoded><![CDATA[<p><img class="image_portfolio_large" title="Ar Construction Website Design" src="http://www.hookedwebdesign.com/wp-content/themes/Bluelight/images/Arconstruction_large.jpg" alt="Ar Construction Website design" width="668" height="336" /></p>
<p><strong>The Client:</strong> AR Construction<br />
A dedicated construction company, with a sense of commitment to their customer base.</p>
<p><strong>The Website:</strong><a title="AR Construction Website" href="http://www.arconstruction.us" target="blank"></a> www.arconstruction.us</p>
<p><strong>Project Description:</strong> Gallery driven website design and development for ArConstruction.us. A simple image driven website was required for this project.</p>
<p><strong>Client Testimonial:</strong> <em>&#8220;As a creative individual, Nabil has a style that can capture your thoughts and turn them into something you previously could not imagine&#8230;a friendly reliable service by a web designer that cares about the customer and delivering a perfect end product.&#8221;</em></p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/bwF_e6pPF4Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/portfolio/ar-construction/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/portfolio/ar-construction/</feedburner:origLink></item>
		<item>
		<title>Hooked Web Design</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/StUbbVKAtyo/</link>
		<comments>http://www.hookedwebdesign.com/featured/hooked-web-design/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 08:14:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost.local/Bluelight-Wordpress/?p=69</guid>
		<description><![CDATA[Hooked Web Design site redesign and development. After a year with the current design a new simple website with a powerful back end was required for this project to showcase my portfolio.]]></description>
			<content:encoded><![CDATA[<p><img class="image_portfolio_large" title="hooked website design" src="http://www.hookedwebdesign.com/wp-content/themes/Bluelight/images/hooked_large.jpg" alt="Hooked Web design" width="660" height="376" /></p>
<p><strong>The Client:</strong> Hooked Web Design<br />
Passionate and dedicated freelance web designer and developer located in Long Island New York.</p>
<p><strong>The Website:</strong><a href="http://www.hookedwebdesign.com" title=" Hooked web design website" target="blank" /> www.hookedwebdesign.com</a></p>
<p><strong>Project Description:</strong> Hooked Web Design site redesign and development. After a year with the current design a new simple website with a powerful back end was required for this project to showcase the my portfolio. The website was created with the use of Wordpress as a Content Management System, with the addition of some Jquery and miscellaneous Javascript functionalities.</p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/StUbbVKAtyo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/featured/hooked-web-design/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/featured/hooked-web-design/</feedburner:origLink></item>
		<item>
		<title>Dynamite Tool</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/5GtgauV39aQ/</link>
		<comments>http://www.hookedwebdesign.com/portfolio/dynamite-tool-website/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 22:38:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost.local/Bluelight-Wordpress/?p=142</guid>
		<description><![CDATA[Website Design, E-Commerce functionality: A strong online retailer needed a extensive, easy to use E-commerce website to sell their products online.]]></description>
			<content:encoded><![CDATA[<p><img class="image_portfolio_large" title="portfolio_large5" src="http://www.hookedwebdesign.com/wp-content/themes/Bluelight/images/Dynamite_large.jpg" alt="portfolio_large5" width="684" height="344" /></p>
<p><strong>The Client:</strong> Dynamite Tool Co</p>
<p><strong>Website:</strong><a href="http://www.dynamitetoolco.com" title="Dynamite Tool E commerce website" target="blank" /> www.dynamitetoolco.com</a></p>
<p><strong>Project Description:</strong> Website Design, E-Commerce functionality: A strong online retailer needed a extensive, easy to use E-commerce website to sell their products online.</p>
<p><strong>Client Testimonial:</strong> <em>&#8220;Nabil&#8217;s designs are original &#038; always exceed my expectations. I&#8217;ve worked with Nabil on a multitude of projects on a daily basis and his professionalism and dedication to his work puts him in a league of his own.&#8221;</em></p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/5GtgauV39aQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/portfolio/dynamite-tool-website/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/portfolio/dynamite-tool-website/</feedburner:origLink></item>
		<item>
		<title>Holbrook Diner</title>
		<link>http://feedproxy.google.com/~r/HookedWebDesign/~3/dbJGcm-xzAA/</link>
		<comments>http://www.hookedwebdesign.com/portfolio/holbrook-diner/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 08:13:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://localhost.local/Bluelight-Wordpress/?p=66</guid>
		<description><![CDATA[Website Design &#038; Maintenance. A clean website and identity to introduce the Holbrook Diner to the world.]]></description>
			<content:encoded><![CDATA[<p><img class="image_portfolio_large" title="portfolio_large3" src="http://www.hookedwebdesign.com/wp-content/themes/Bluelight/images/Holbrook_large.jpg" alt="portfolio_large3" width="668" height="336" /></p>
<p><strong>The Client:</strong> Holbrook Diner</p>
<p><strong>The Website:</strong><a href="http://www.holbrookdiner.com" title="Holbrook diner website" target="blank" /> www.holbrookdiner.com</a></p>
<p><strong>Project Description:</strong> Website Design &#038; Maintenance. A clean website and identity to introduce the Holbrook Diner to the world.</p>
<img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/dbJGcm-xzAA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.hookedwebdesign.com/portfolio/holbrook-diner/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.hookedwebdesign.com/portfolio/holbrook-diner/</feedburner:origLink></item>
	<item><title>Links for 2008-05-13 [del.icio.us]</title><link>http://feedproxy.google.com/~r/HookedWebDesign/~3/1cXKfXMOLoM/nabsay</link><pubDate>Wed, 14 May 2008 00:00:00 PDT</pubDate><guid isPermaLink="false">http://del.icio.us/nabsay#2008-05-13</guid><description>&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.dynamitetoolco.com/"&gt;Dynamite Tool&lt;/a&gt;&lt;br/&gt;
Tool store&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/makitatools.html"&gt;Makita Tools, Makita Drills, Makita LXT Lithium Ion, Makita Saws @ Discounted Prices |DynamiteTooLCo.com&lt;/a&gt;&lt;br/&gt;
Makita Tools, Makita Drills, Makita LXT Lithium Ion, Makita Saws&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/dewalt_tools.html"&gt;Dewalt Tools, Dewalt Saws, Dewalt Stand, Dewalt Cordless Tools, Dewalt Drills, Dewalt Grinder |DynamiteTooLCo.com&lt;/a&gt;&lt;br/&gt;
Dewalt Tools, Dewalt Saws, Dewalt Miter Saws, Dewalt Jig Saw, Dewalt Reciprocating Saw, Dewalt Stand, Dewalt Cordless |DynamiteTooLCo.com&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/bosch_tools.html"&gt;Bosch Tools, Bosch Cordless, Routers, Drills, Saws, Hammerdrills |DynamiteTooLCo.Com&lt;/a&gt;&lt;br/&gt;
Bosch Tools; Cordless Tools, Saws, Routers, Sanders, Drills, Hammerdrills... |DynamiteTooLCo.com&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/channellock_pliers.html"&gt;Channellock Tools, Tongue and Groove Plier, Channellock Wrench  |Dynamite Tool&lt;/a&gt;&lt;br/&gt;
Channellock Tools, Channelleock Pliers, Channellock Adjustable Wrenches, Channellock Tongue and Groove... |Dynamite Tool&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/custom_leathercraft_clc.html"&gt;Custom LeatherCraft, CLC Tool Pouches, Tool Carriers |DynamiteTooLCo.Com&lt;/a&gt;&lt;br/&gt;
Custom LeatherCraft, CLC Tool Pouches, Tool Carriers, Tool Bags, Nail Bags, Roll Pouches @ Discounted Prices |DynamiteTooLCo.com&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/kreg_tool.html"&gt;Kreg Tools, Kreg Tables, Kreg Pocket Hole |DynamiteTooLCo.Com&lt;/a&gt;&lt;br/&gt;
Dynamite Tool, authorized dealer of Kreg Tools, Kreg Pocket Hole, Kreg Jig. Pocket hole woodworking jigs can speed, strengthen and simplify your projects and make you a faster more accurate woodworker. The Kreg Pocket Hole Jig, rated #1 by Wood magazine&lt;/li&gt;
&lt;li&gt;&lt;a href="http://http//www.dynamitetoolco.com/milwaukee_tools.html"&gt;Milwaukee Tools, V28 Lithium Ion Tools, Saws |DynamiteTooLCo.Co&lt;/a&gt;&lt;br/&gt;
Milwaukee Tools, Milwaukee V28 Lithium Ion Tools, Milwaukee Saws @ Discounted Prices |DynamiteTooLCo.com&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.dynamitetoolco.com/rotozip.html"&gt;Rotozip Tools, Rotozip Spiral Saws, Roto-Zip Drywall Router |Dynamite Tool&lt;/a&gt;&lt;br/&gt;
Rotozip tools, Rotozip Spiral Saw System, Drywall Router |Dynamite TooL&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.arconstruction.us/"&gt;Kitchen Bathroom Remodeling &amp;amp; Renovation Suffolk County|AR Construction&lt;/a&gt;&lt;br/&gt;
Clients have been counting on AR Construction&amp;#039;s experience since 1987, and we have always delivered. While others have come and gone, we have evolved into one of Suffolk County, Long Island&amp;#039;s most respected construction companies, with one thought in mind&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/HookedWebDesign/~4/1cXKfXMOLoM" height="1" width="1"/&gt;</description><feedburner:origLink>http://del.icio.us/nabsay#2008-05-13</feedburner:origLink></item></channel>
</rss>
