<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-815438421101337110</id><updated>2012-02-16T07:36:51.272-08:00</updated><category term='web Tips'/><category term='QPHP'/><category term='php frameworks'/><category term='optimisation'/><category term='xhtml cheatsheet'/><category term='Prado'/><category term='php'/><category term='WASP'/><category term='arrays'/><category term='cheat sheets'/><category term='DIY'/><category term='php cheatsheet'/><category term='codeigniter'/><category term='best practices'/><category term='mysql cheatsheet'/><category term='Google Tips'/><category term='load optimisation'/><category term='remove item'/><category term='Fusebox'/><category term='jquery'/><category term='speed up the website'/><category term='Experts Advices'/><category term='sub menus'/><category term='YII'/><category term='frameworks'/><category term='Searching Tips'/><category term='primary links'/><category term='html cheatsheet'/><category term='Tips Online'/><category term='Seagul'/><category term='drupal'/><category term='ajax cheatsheet'/><category term='cakephp'/><category term='symfony'/><category term='eclipse cheatsheet'/><category term='javascript cheatsheet'/><category term='zend'/><category term='SEO Tips'/><category term='website optimisation'/><title type='text'>What Do Web Experts Say About Your Websites...</title><subtitle type='html'>Web Experts suggestions, Tips, Recommendations to make your website earn more for you and attract visitors in few possible ways, Web Designing, Web  Development, SEO Tips</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-2863378661413820315</id><published>2011-02-15T01:48:00.000-08:00</published><updated>2011-02-15T01:48:25.023-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='remove item'/><category scheme='http://www.blogger.com/atom/ns#' term='jquery'/><category scheme='http://www.blogger.com/atom/ns#' term='arrays'/><title type='text'>Remove item from array with jQuery</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, sans-serif; font-size: 14px; line-height: 17px;"&gt;Remove item (number or string) from array, using jQuery (method grep).&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-family: Arial, sans-serif; font-size: 14px; line-height: 17px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;arr = [1, 2, 3, 4, 5] // array initial&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;var removeItem = 2; &amp;nbsp; // item do array que deverÃ¡ ser removido&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;arr = jQuery.grep(arr, function(value) {&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return value != removeItem;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;});&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: #0b5394; font-family: Arial, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: 14px; line-height: 17px;"&gt;// new array&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="font-family: Arial, sans-serif; font-size: 14px; line-height: 17px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-2863378661413820315?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/2863378661413820315/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=2863378661413820315' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/2863378661413820315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/2863378661413820315'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2011/02/remove-item-from-array-with-jquery.html' title='Remove item from array with jQuery'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-1850859077505569625</id><published>2010-12-31T04:16:00.000-08:00</published><updated>2010-12-31T04:16:10.381-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='Google Tips'/><title type='text'>How many Drupal sites are there in the world?</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: 13px; line-height: 19px;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: 13px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;How do you find "all" the Drupal sites that Google knows about?&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: 13px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;A post on&amp;nbsp;&lt;a class="ext" href="http://drupal.org/node/36748" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #0066cc; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;drupal.org suggests Add New Comment&lt;/a&gt;&lt;span class="ext" style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://files.thingy-ma-jig.com/sites/all/modules/extlink/extlink.png); background-origin: initial; background-position: 100% 50%; background-repeat: no-repeat no-repeat; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 12px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;/span&gt;, but that wont be entirely accurate. So far I have come up with a search that lists all sites with a User Account page on user/login:&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 13px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="color: #222222; line-height: 16px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace; font-size: x-small;"&gt;intitle:"User account" inurl:"user/login"&lt;/span&gt;&lt;/blockquote&gt;&lt;pre class="text geshifilter-text" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0.5em; padding-left: 0.5em; padding-right: 0.5em; padding-top: 0.5em; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: black; font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline; white-space: normal;"&gt;Or you can use this link to&amp;nbsp;&lt;a class="ext" href="http://www.google.co.uk/search?q=intitle:%22User%20account%22%20inurl:%22user/login%22" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #0066cc; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;search for drupal sites in Google&lt;/a&gt;&lt;span class="ext" style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: url(http://files.thingy-ma-jig.com/sites/all/modules/extlink/extlink.png); background-origin: initial; background-position: 100% 50%; background-repeat: no-repeat no-repeat; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 12px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;/span&gt;.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: black; font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline; white-space: normal;"&gt;I am aware this only lists sites with user login linked to somewhere and not blocked by Robots.txt.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: black; font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: 13px; line-height: 19px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline; white-space: normal;"&gt;I have also seen suggestions that looking for a CSS file might work, however with Drupal's CSS aggregation, this could be difficult.&lt;/div&gt;&lt;/span&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px; white-space: normal;"&gt;Please share any alternatives, my search above (currently) shows around&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: black; font-family: arial, sans-serif; font-size: 11px; line-height: normal; white-space: normal;"&gt;2&lt;/span&gt;&lt;/span&gt;,620,000 &lt;span class="Apple-style-span" style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: x-small;"&gt;&lt;span class="Apple-style-span" style="line-height: 19px; white-space: normal;"&gt;&amp;nbsp;(on Google UK). How can we make this better?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-1850859077505569625?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/1850859077505569625/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=1850859077505569625' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/1850859077505569625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/1850859077505569625'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2010/12/how-many-drupal-sites-are-there-in.html' title='How many Drupal sites are there in the world?'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-7888294613067550747</id><published>2010-12-22T03:23:00.000-08:00</published><updated>2010-12-22T03:23:00.913-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sub menus'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='primary links'/><title type='text'>How to display sub menus (children) of primary links in drupal?</title><content type='html'>&lt;div class="p-con" style="font-family: Verdana,sans-serif;"&gt; &lt;span style="font-size: x-small;"&gt;&lt;strong&gt;Step 1 :&lt;/strong&gt; Since we'll be using php codes in a block to display menu, the first thing to do is to enable the PHP Filter under modules.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;strong&gt;Step 2 &lt;/strong&gt;: Go to administer-&amp;gt;block-&amp;gt;add block and create a new block. Add a &lt;strong&gt;description&lt;/strong&gt; (i use submenu). Choose &lt;strong&gt;PHP Code&lt;/strong&gt; as the filter and paste the code below in the body textarea.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;span style="font-size: small;"&gt;&lt;span style="color: #999999;"&gt;&lt;span&gt;&amp;lt;?php&lt;br /&gt;$menuItems = menu_tree_page_data('primary-links'); &lt;br /&gt;&lt;br /&gt;foreach($menuItems as $key =&amp;gt; $m) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //check current active menu&lt;br /&gt;&amp;nbsp;&amp;nbsp; if ($m['link']['in_active_trail'] &amp;amp;&amp;amp; $menuItems [$key]['below']) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $menu = menu_tree_output($menuItems [$key]['below']);&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&amp;nbsp; &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//print the menu&lt;br /&gt;print $menu;&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-size: small;"&gt;&lt;span style="color: #999999;"&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;span style="font-size: x-small;"&gt;Make sure you include the php delimiters in your code. Press save.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;strong&gt;Step 3 :&lt;/strong&gt;  Place your block in a region you want. and that's it. next time you  select a menu item in the primary links, the children menu items will  show in this block.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;You can use active-trail to style the selected menu item.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;Alternatively, you may use Menu Block module which can do the same without writing a single line of code. Let me know if you need any guidence. &lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-7888294613067550747?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/7888294613067550747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=7888294613067550747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/7888294613067550747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/7888294613067550747'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2010/12/how-to-display-sub-menus-children-of.html' title='How to display sub menus (children) of primary links in drupal?'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-911896915519160105</id><published>2010-11-21T09:49:00.000-08:00</published><updated>2010-11-21T09:49:48.530-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='xhtml cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='ajax cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='eclipse cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='php cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='html cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='javascript cheatsheet'/><category scheme='http://www.blogger.com/atom/ns#' term='cheat sheets'/><title type='text'>25+ Must-Have Cheat Sheets for Web Developers</title><content type='html'>&lt;span class="Apple-style-span" style="color: #4e4e4e; font-family: 'Segoe UI', Calibri, 'Myriad Pro', Myriad, 'Trebuchet MS', Helvetica, Arial, sans-serif;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;h3 style="font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4e4e4e; font-family: 'Segoe UI', Calibri, 'Myriad Pro', Myriad, 'Trebuchet MS', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 19px;"&gt;Who wants to go to Google or break out the library of programming books every single time you get stuck on something? Below is a compilation of extremely useful cheat sheets, which can be printed, laminated and placed nearby for easy reference while doing your web development and design. Everyone has moments where a function cannot be remembered, and that is where these cheat sheets can be lifesavers. Bookmark this page for an easy portal to all of the cheat sheets, or an individual page if you find it helpful. Please don’t hesitate to post any cheat sheets we neglected to include, for this is about sharing knowledge.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4e4e4e; font-family: 'Segoe UI', Calibri, 'Myriad Pro', Myriad, 'Trebuchet MS', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 19px;"&gt;With Courtesy:&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; color: #4e4e4e; font-family: 'Segoe UI', Calibri, 'Myriad Pro', Myriad, 'Trebuchet MS', Helvetica, Arial, sans-serif; font-size: 13px;"&gt;&lt;a href="http://webjawns.com/"&gt;Chris Strosser&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;1.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="PHP Cheat Sheet"&gt;PHP&lt;/a&gt;&lt;/h3&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;&lt;div class="mceTemp" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_121" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-php.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="PHP Cheat Sheet" class="size-medium wp-image-121" height="194" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-php-300x194.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="PHP Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;/h3&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/&lt;span id="more-99" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;2.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/mysql-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="MySQL Cheat Sheet"&gt;MySQL&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_120" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-mysql.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="MySQL Cheat Sheet" class="size-medium wp-image-120" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-mysql-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="MySQL Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/mysql-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;3.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/javascript-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="JavaScript Cheat Sheet"&gt;JavaScript&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_117" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-javascript.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="JavaScript Cheat Sheet" class="size-medium wp-image-117" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-javascript-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="JavaScript Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/javascript-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;4.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CSS Cheat Sheet"&gt;CSS&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_106" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-css.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="CSS Cheat Sheet" class="size-medium wp-image-106" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-css-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CSS Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;5.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Regular Expressions Cheat Sheet"&gt;Regular Expressions&lt;/a&gt;&lt;div style="line-height: 31px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;/div&gt;&lt;div class="mceTemp" style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_122" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-regular-express.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Regular Expressions Cheat Sheet" class="size-medium wp-image-122" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-regular-express-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Regular Expressions Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;/h3&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;6.&amp;nbsp;&lt;a href="http://www.addedbytes.com/apache/mod_rewrite-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Apache's mod_rewrite Cheat Sheet"&gt;Apache’s mod_rewrite&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_119" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-mod_rewrite.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="mod_rewrite Cheat Sheet" class="size-medium wp-image-119" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-mod_rewrite-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="mod_rewrite Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/apache/mod_rewrite-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;7.&amp;nbsp;&lt;a href="http://acodingfool.typepad.com/blog/pdf/jquery_1.3_cheatsheet_v1.pdf" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="jQuery 1.3 Cheat Sheet"&gt;jQuery&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_129" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-jquery.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="jQuery Cheat Sheet" class="size-medium wp-image-129" height="164" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-jquery-300x164.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="jQuery Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://acodingfool.typepad.com/blog/pdf/jquery_1.3_cheatsheet_v1.pdf&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;8.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/html-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="HTML Cheat Sheet"&gt;HTML&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_114" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-html.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="HTML Cheat Sheet" class="size-medium wp-image-114" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-html-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="HTML Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/html-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;9.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/html-character-entities-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="HTML Character Entities Cheat Sheet"&gt;HTML Character Entities&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_116" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-html-entities.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="HTML Entities Cheat Sheet" class="size-medium wp-image-116" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-html-entities-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="HTML Entities Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/html-character-entities-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;10.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/colour-chart/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="RGB Hex Color Code Cheat Sheet"&gt;RGB Hex Color Codes&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_123" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-rgb-color-codes.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="RGB Color Codes Cheat Sheet" class="size-medium wp-image-123" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-rgb-color-codes-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="RGB Color Codes Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/colour-chart/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;11.&amp;nbsp;&lt;a href="http://www.thejackol.com/htaccess-cheatsheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title=".htaccess Cheat Sheet"&gt;.htaccess&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_113" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-htaccess.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt=".htaccess Cheat Sheet" class="size-medium wp-image-113" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-htaccess-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title=".htaccess Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.thejackol.com/htaccess-cheatsheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;12.&amp;nbsp;&lt;a href="http://www.petefreitag.com/cheatsheets/apache/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Apache Cheat Sheet"&gt;Apache&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_103" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-apache.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Apache Cheat Sheet" class="size-medium wp-image-103" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-apache-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Apache Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.petefreitag.com/cheatsheets/apache/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;13.&amp;nbsp;&lt;a href="http://www.seomoz.org/blog/the-web-developers-seo-cheat-sheet" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="SEO Cheat Sheet"&gt;SEO&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_124" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-seo.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="SEO Cheat Sheet" class="size-medium wp-image-124" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-seo-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="SEO Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.seomoz.org/blog/the-web-developers-seo-cheat-sheet&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;14.&amp;nbsp;&lt;a href="http://www.marcofolio.net/cheat_sheets/gmail_keyboard_shortcuts_cheat_sheet.html" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Gmail Cheat Sheet"&gt;Gmail&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_110" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-gmail.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Gmail Cheat Sheet" class="size-medium wp-image-110" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-gmail-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Gmail Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.marcofolio.net/cheat_sheets/gmail_keyboard_shortcuts_cheat_sheet.html&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;15.&amp;nbsp;&lt;a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="HTML5 Cheat Sheet"&gt;HTML5&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_115" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-html5.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="HTML5 Cheat Sheet" class="size-medium wp-image-115" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-html5-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="HTML5 Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;16.&amp;nbsp;&lt;a href="http://www.searchenginejournal.com/the-huge-collection-of-google-analytics-tips/7426/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Google Analytics Cheat Sheet"&gt;Google Analytics&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_112" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-google-analytics.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Google Analytics Cheat Sheet" class="size-medium wp-image-112" height="277" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-google-analytics-300x277.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Google Analytics Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.searchenginejournal.com/the-huge-collection-of-google-analytics-tips/7426/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;17.&amp;nbsp;&lt;a href="http://speckyboy.com/2009/06/17/14-essential-wordpress-development-and-design-cheat-sheets/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="WordPress Cheat Sheets"&gt;WordPress Cheat Sheets&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_102" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-wordpress.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="WordPress Cheat Sheets" class="size-medium wp-image-102" height="253" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-wordpress-300x253.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="WordPress Cheat Sheets" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://speckyboy.com/2009/06/17/14-essential-wordpress-development-and-design-cheat-sheets/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;18.&amp;nbsp;&lt;a href="http://www.addedbytes.com/cheat-sheets/subversion-cheat-sheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Subversion Cheat Sheet"&gt;Subversion&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_125" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-subversion.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Subversion Cheat Sheet" class="size-medium wp-image-125" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-subversion-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Subversion Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.addedbytes.com/cheat-sheets/subversion-cheat-sheet/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;19.&amp;nbsp;&lt;a href="http://refcardz.dzone.com/refcardz/getting-started-eclipse?oid=hom7187" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Eclipse Cheat Sheet"&gt;Eclipse&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_108" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-eclipse.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Eclipse Cheat Sheet" class="size-medium wp-image-108" height="159" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-eclipse-300x159.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Eclipse Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://refcardz.dzone.com/refcardz/getting-started-eclipse?oid=hom7187&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;20.&amp;nbsp;&lt;a href="http://www.google.com/help/cheatsheet.html" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Google Search Engine Cheat Sheet"&gt;Google Search Engine&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_111" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-google.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Google Cheat Sheet" class="size-medium wp-image-111" height="179" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-google-300x179.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Google Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.google.com/help/cheatsheet.html&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;21.&amp;nbsp;&lt;a href="http://jasontheodor.com/2009/04/28/twitter-tweet-sheet-2/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Twitter Cheat Sheet"&gt;Twitter&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_126" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-twitter.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Twitter Cheat Sheet" class="size-medium wp-image-126" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-twitter-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Twitter Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://jasontheodor.com/2009/04/28/twitter-tweet-sheet-2/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;22.&amp;nbsp;&lt;a href="http://cakephp.org/files/Resources/CakePHP-1.2-Cheatsheet.pdf" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CakePHP"&gt;CakePHP&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_104" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-cakephp.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="CakePHP Cheat Sheet" class="size-medium wp-image-104" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-cakephp-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CakePHP Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://cakephp.org/files/Resources/CakePHP-1.2-Cheatsheet.pdf&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;23.&amp;nbsp;&lt;a href="http://www.younic.de/joomla-basic-template-cheatsheet" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Joomla Cheat Sheet"&gt;Joomla&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_118" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-joomla-1.5.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Joomla 1.5 Cheat Sheet" class="size-medium wp-image-118" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-joomla-1.5-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Joomla 1.5 Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.younic.de/joomla-basic-template-cheatsheet&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;24.&amp;nbsp;&lt;a href="http://designfellow.com/blog/freebies/codeigniter-quick-reference-cheat-sheet-version-2-0-released/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CodeIgniter Cheat Sheet"&gt;CodeIgniter&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_105" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-codeigniter.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="CodeIgniter Cheat Sheet" class="size-medium wp-image-105" height="195" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-codeigniter-300x195.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CodeIgniter Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://designfellow.com/blog/freebies/codeigniter-quick-reference-cheat-sheet-version-2-0-released/&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;25.&amp;nbsp;&lt;a href="http://www.inmensia.com/files/pictures/internal/CheatSheetDrupal4.7.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Drupal Cheat Sheet"&gt;Drupal&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_107" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-drupal.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Drupal Cheat Sheet" class="size-medium wp-image-107" height="183" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-drupal-300x183.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Drupal Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://www.inmensia.com/files/pictures/internal/CheatSheetDrupal4.7.png&lt;/div&gt;&lt;h3 style="font-size: 21px; font-weight: normal; letter-spacing: -0.04em; line-height: 23px; margin-bottom: 0.2em; margin-left: 0px; margin-right: 0px; margin-top: 0.7em; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-shadow: rgb(255, 255, 255) 1px 1px 1px;"&gt;26.&amp;nbsp;&lt;a href="http://duvet-dayz.com/firebug-cheatsheet/" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Firebug Cheat Sheet"&gt;Firebug&lt;/a&gt;&lt;/h3&gt;&lt;div class="mceTemp" style="font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br /&gt;&lt;dl class="wp-caption alignnone" id="attachment_109" style="background-color: #f3f3f3; border-bottom-color: rgb(221, 221, 221); border-bottom-left-radius: 3px 3px; border-bottom-right-radius: 3px 3px; border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(221, 221, 221); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(221, 221, 221); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(221, 221, 221); border-top-left-radius: 3px 3px; border-top-right-radius: 3px 3px; border-top-style: solid; border-top-width: 1px; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; margin-top: 10px; padding-bottom: 0.8em; padding-left: 0px; padding-right: 0px; padding-top: 4px; text-align: center; width: 310px;"&gt;&lt;dt class="wp-caption-dt" style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: underline;"&gt;&lt;a href="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-firebug.png" style="color: #0071bb; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: none; outline-width: initial; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;img alt="Firebug Cheat Sheet" class="size-medium wp-image-109" height="175" src="http://webjawns.com/wp-content/uploads/2009/08/cheat-sheet-firebug-300x175.png" style="border-bottom-style: none; border-bottom-width: 0px; border-color: initial; border-color: initial; border-left-style: none; border-left-width: 0px; border-right-style: none; border-right-width: 0px; border-style: initial; border-top-style: none; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="Firebug Cheat Sheet" width="300" /&gt;&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;&lt;/div&gt;&lt;div style="font-size: 13px; line-height: 19px; margin-bottom: 0.8em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;http://duvet-dayz.com/firebug-cheatsheet/&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-911896915519160105?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/911896915519160105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=911896915519160105' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/911896915519160105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/911896915519160105'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2010/11/25-must-have-cheat-sheets-for-web.html' title='25+ Must-Have Cheat Sheets for Web Developers'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-2611588645489458257</id><published>2010-11-20T16:01:00.000-08:00</published><updated>2010-11-20T16:01:50.148-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='best practices'/><category scheme='http://www.blogger.com/atom/ns#' term='optimisation'/><category scheme='http://www.blogger.com/atom/ns#' term='load optimisation'/><category scheme='http://www.blogger.com/atom/ns#' term='website optimisation'/><category scheme='http://www.blogger.com/atom/ns#' term='speed up the website'/><title type='text'>Best Practices for Speeding Up Your Web Site</title><content type='html'>&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: x-small;"&gt;Yahoo's exception performance team has identified number of best practices for optimising website load time. The list includes following best practices divided into 7 categories as on &lt;a href="http://developer.yahoo.com/performance/rules.html#num_http"&gt;Yahoo website&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: x-small;"&gt;&lt;span style="font-size: x-small;"&gt;&lt;b&gt;CONTENT &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#num_http"&gt;Make Fewer HTTP Requests&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#dns_lookups"&gt;Reduce DNS Lookups&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#redirects"&gt;Avoid Redirects&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#cacheajax"&gt;Make Ajax Cacheable&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#postload"&gt;Postload Components&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#preload"&gt;Preload Components&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#min_dom"&gt;Reduce the Number of DOM Elements&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#split"&gt;Split Components Across Domains&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#iframes"&gt;Minimize Number of iframes&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Content" href="http://developer.yahoo.com/performance/rules.html#no404"&gt;Avoid 404s&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: x-small;"&gt;&amp;nbsp;SERVER&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#cdn"&gt;Use a Content Delivery Network (CDN)&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#expires"&gt;Add Expires or Cache-Control Header&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#gzip"&gt;Gzip Components&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#etags"&gt;Configure ETags&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#flush"&gt;Flush Buffer Early&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#ajax_get"&gt;Use GET for Ajax Requests&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Server" href="http://developer.yahoo.com/performance/rules.html#emptysrc"&gt;Avoid Empty Image src&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: x-small;"&gt;COOKIE&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Cookie" href="http://developer.yahoo.com/performance/rules.html#cookie_size"&gt;Reduce Cookie Size&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Cookie" href="http://developer.yahoo.com/performance/rules.html#cookie_free"&gt;Use Cookie-Free Domains for Components&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: x-small;"&gt;CSS&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="CSS" href="http://developer.yahoo.com/performance/rules.html#css_top"&gt;Put Stylesheets at Top&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="CSS" href="http://developer.yahoo.com/performance/rules.html#css_expressions"&gt;Avoid CSS Expressions&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="CSS" href="http://developer.yahoo.com/performance/rules.html#csslink"&gt;Choose &amp;lt;link&amp;gt; Over @import&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="CSS" href="http://developer.yahoo.com/performance/rules.html#no_filters"&gt;Avoid Filters&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: x-small;"&gt;Javascript&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="JavaScript" href="http://developer.yahoo.com/performance/rules.html#js_bottom"&gt;Put Scripts at Bottom&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="JavaScript css" href="http://developer.yahoo.com/performance/rules.html#external"&gt;Make JavaScript and CSS External&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="JavaScript css" href="http://developer.yahoo.com/performance/rules.html#minify"&gt;Minify JavaScript and CSS&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="JavaScript" href="http://developer.yahoo.com/performance/rules.html#js_dupes"&gt;Remove Duplicate Scripts&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="JavaScript" href="http://developer.yahoo.com/performance/rules.html#dom_access"&gt;Minimize DOM Access&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="JavaScript" href="http://developer.yahoo.com/performance/rules.html#events"&gt;Develop Smart Event Handlers&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: x-small;"&gt;IMAGES&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Images" href="http://developer.yahoo.com/performance/rules.html#opt_images"&gt;Optimize Images&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Images" href="http://developer.yahoo.com/performance/rules.html#opt_sprites"&gt;Optimize CSS Sprites&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Images" href="http://developer.yahoo.com/performance/rules.html#no_scale"&gt;Do Not Scale Images in HTML&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Images" href="http://developer.yahoo.com/performance/rules.html#favicon"&gt;Make favicon.ico Small and Cacheable&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;b&gt;&lt;span style="font-size: x-small;"&gt;MOBILE&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;ol id="rules-list" style="font-family: Verdana,sans-serif;"&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Mobile" href="http://developer.yahoo.com/performance/rules.html#under25"&gt;Keep Components Under 25 KB&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size: x-small;"&gt;&lt;a class="Mobile" href="http://developer.yahoo.com/performance/rules.html#multipart"&gt;Pack Components Into a Multipart Document&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt; &lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt; &lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt; &lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt; &lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt; &lt;/div&gt;&lt;div style="font-family: Verdana,sans-serif;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-2611588645489458257?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/2611588645489458257/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=2611588645489458257' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/2611588645489458257'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/2611588645489458257'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2010/11/best-practices-for-speeding-up-your-web.html' title='Best Practices for Speeding Up Your Web Site'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-7123751427114593680</id><published>2010-11-07T05:14:00.000-08:00</published><updated>2010-11-07T05:14:05.528-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='frameworks'/><category scheme='http://www.blogger.com/atom/ns#' term='symfony'/><category scheme='http://www.blogger.com/atom/ns#' term='WASP'/><category scheme='http://www.blogger.com/atom/ns#' term='DIY'/><category scheme='http://www.blogger.com/atom/ns#' term='Fusebox'/><category scheme='http://www.blogger.com/atom/ns#' term='php frameworks'/><category scheme='http://www.blogger.com/atom/ns#' term='Seagul'/><category scheme='http://www.blogger.com/atom/ns#' term='cakephp'/><category scheme='http://www.blogger.com/atom/ns#' term='Prado'/><category scheme='http://www.blogger.com/atom/ns#' term='zend'/><category scheme='http://www.blogger.com/atom/ns#' term='QPHP'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='YII'/><category scheme='http://www.blogger.com/atom/ns#' term='codeigniter'/><title type='text'>PHP Frameworks</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;We are very familiar with the importance of development frameworks in any programming language. It really makes the job very easy for developers and encourage Rapid Application Development (RAD). I have always been upto learning some framework and eventually came across one of the frameworks for PHP i.e. CakePHP.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;I have covered the very basic features of the framework and trust me I am loving it so far. However, I also wanted to check on other available frameworks in the market and came across the following list published on a &lt;a href="http://www.phpframeworks.com/"&gt;website&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.phpframeworks.com/" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="182" src="http://2.bp.blogspot.com/_bVIzaFZ0cgw/TNakdA30GmI/AAAAAAAACno/B99xdsqCaoA/s400/Frameworks.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-7123751427114593680?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/7123751427114593680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=7123751427114593680' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/7123751427114593680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/7123751427114593680'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2010/11/php-frameworks.html' title='PHP Frameworks'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_bVIzaFZ0cgw/TNakdA30GmI/AAAAAAAACno/B99xdsqCaoA/s72-c/Frameworks.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-8492420536642171471</id><published>2007-10-31T02:06:00.000-07:00</published><updated>2007-10-31T02:11:47.252-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Searching Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='Google Tips'/><title type='text'>Exciting things you can do with Google</title><content type='html'>&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Google’s remarkable ability to produce speedy, relevant results to search queries has changed the way people find information. To google means to search; the company’s name has become a verb in English, German, and other languages. However, many average computer users are not aware of many of the functionalities built in Google. Here, I will share a few tips to enhance your googling experience.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Searching for a term and its synonyms&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; Prefix a word with the tilde character “~” with no space between, in the Google search box, and Google will return web pages relevant to the word as well as its synonyms. For example, a search for ~auto will list web pages containing the terms auto, automobiles, cars, vehicles, trucks and more.&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Precision searches for lyrics, book titles etc.&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you are looking for information about exact phrases such as song lyrics or book titles, you should add quote marks around your query. Thus, typing “I should have known better” into Google will return web pages about the song by The Beatles. Google ignores common words like and, is, are, the, of, on and to when they are used in search queries without quotes.&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;  Browse the world’s libraries online&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; You can browse or read the entire text of books that are not copyrighted, by searching for a topic at print.google.com. Google has scanned and indexed millions of volumes from the libraries of Oxford, Harvard, Stanford, New York Public library, etc.&lt;/span&gt; &lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Google for scholarly research&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you are a research scholar looking for scientific papers and academic journals, search for them at Google Scholar (scholar.google.com).&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Google as your dictionary&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you type define followed by any English word into the Google search box, you can see a quick definition of the word at the top of the search results.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Google as your calculator&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you enter a mathematical expression into the Google search box, Google will compute the answer. You can use numbers and symbols as in (113 + 25) or use words as in (ten plus two), or a combination such as (10% of fifty million).&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Google as your phone book&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you enter a person’s or business name, city and state into the Google search box, you will see the matching phone and address listings at the top of the search results.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Get instant stock quotes&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you type a stock ticker symbol into the Google search box, you can get instant stock quotes for any public company listed on NASDAQ, New York Stock Exchange, or American Stock Exchange.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Google as language translator&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; You can translate text and web pages among several languages using the automated translation service built in Google.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Maps and driving directions&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; Enter a city and state or just a zip code in Google search box, and Google will provide a direct link to its own map and direction service (maps.google.com), as well as those by Yahoo and MapQuest.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Get instant answers on your cell phone&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; If you are in the U.S., send a text message to the number 46645 (GOOGL) with your query, and Google will reply you back with instant answers. So, you can get phone numbers, stock quotes, movie information, etc. even when you are on the go.&lt;/span&gt;&lt;/p&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;These selected features just provide a glimpse of the limitless possibilities for accessing information using a search engine such as Google. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-8492420536642171471?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/8492420536642171471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=8492420536642171471' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/8492420536642171471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/8492420536642171471'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/exciting-things-you-can-do-with-google.html' title='Exciting things you can do with Google'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-6327253997344711830</id><published>2007-10-31T01:54:00.001-07:00</published><updated>2007-10-31T01:55:17.930-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>SEO Tips for launching a new website</title><content type='html'>&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Search Engines like Google and Yahoo have become intelligent in the past 4-5 years. It is very difficult to game search engines nowadays by manipulating tags and keyword stuffing. For a new site it may take 6 to 9 months to achieve competitive rankings at Google. From SEO point of view, I recommend the following steps for launching a new website.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Registering a domain name&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; Pick a domain name which either has keywords associated with your product/service or your brand name. It is better to go for short domain names which are easy to remember. If your target market is global, go for a .com domain. If you are targeting a particular country or language, it is better to register a domain name in TLD of that country. For example, go for a .jp or .co.jp domain, if you are targeting Japan. I recommend you to register the domain for at least 2 years; more the better to gain the trust of search engines.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Domain Hosting&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; Host your site with a reliable hosting company. Stay away from companies which allow hosting of pharmacy, gambling and adult sites, or have a history of serving spam. If you are targeting a particular country/language, it is advised to host your site in that country to boost your rankings in the local search engines for that country/language.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Registering with Search Engines&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; Since search engines give important to domain aging and can track parameters like the registration date &amp;amp; first crawled date, you better register your site with search engines as early as possible. Even if your site is not fully ready, it is better to make a temporary one-two page site and register with the search engines at the earliest. Getting indexed in MSN may take only 3-4 days, whereas it may take 2-3 months to get indexed in Google and Yahoo. To speed up this process, you should build incoming links from authority websites. More the links a site receives, the less it is ignored by the search engines. It also reduces the Google sandboxing time for new sites. Submitting your sitemap to Google Webmaster Central also ensures that your site would get crawled and indexed regularly.&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;Build trust with Search Engines&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt; To build trust with the search engines, you should build your incoming links and content at a regular pace. Keep your content unique and relevant to your products/services. Building links from relevant websites will boost your rankings. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-6327253997344711830?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/6327253997344711830/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=6327253997344711830' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/6327253997344711830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/6327253997344711830'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/seo-tips-for-launching-new-website.html' title='SEO Tips for launching a new website'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-7433085908075754042</id><published>2007-10-31T01:23:00.000-07:00</published><updated>2007-10-31T01:24:12.835-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Google Filter: Minus 30 penalty</title><content type='html'>&lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Google is harder to manipulate compared to other search engines because of various filters it incorporates in its algorithm to prevent spam. Minus 30 penalty is one such filter for handling spam in Google algorithm.&lt;/span&gt;&lt;/p&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;So, what is this minus 30 penalty? If your site was previously ranking high in Google search results, and suddenly its ranking drops by 30 positions, there is a chance that the minus 30 penalty is applied to your site. Normally, if you do a search on your domain name, you would expect to see your site at the first position; but if you see your site at 31st position, it is very likely that the minus 30 penalty is in force.&lt;/span&gt;&lt;/p&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Most likely candidates to experience this penalty are affiliate sites which do not add much value for the site visitors. However, many non-affiliate sites also have reported this penalty. Though there is no proven theory which can identify sites which are likely to face this penalty, sites with excessive low quality inbound or outbound links and lots of non-unique content may have a minus 30 ranking penalty applied.&lt;/span&gt;&lt;/p&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;The only solution to avoid this penalty is to have unique content on your site, to get links from well trusted sites and to link to high quality sites. For detailed information, please refer to Google’s &lt;a title="Google's Webmaster Guidelines" href="http://www.google.com/support/webmasters/bin/answer.py?answer=35769"&gt;Webmaster Guidelines&lt;/a&gt;. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-7433085908075754042?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/7433085908075754042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=7433085908075754042' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/7433085908075754042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/7433085908075754042'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/google-filter-minus-30-penalty.html' title='Google Filter: Minus 30 penalty'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-2239525599323666851</id><published>2007-10-31T01:19:00.000-07:00</published><updated>2007-10-31T01:20:19.199-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Single Canonical URL for better Google ranking</title><content type='html'>&lt;span style="font-size:100%;"&gt;A Common SEO mistake made by many webmasters is that they are not consistent when it comes to linking to their URLs across their site.&lt;/span&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;If some of your links go to the URL http://yoursite.com, and the rest go to http://www.yoursite.com/, your link popularity gets divided among these two URLs - thus affecting the pagerank as well as the ranking for that URL. So, it is better to pick the URL that you want and use it consistently across your entire website, as well as for your incoming links. One cannot, however, control how other sites would link to his website. So you have to inform Google which URL you prefer to be canonical. Google calls Canonicalization as the process for picking the best URL when there are many alternatives.&lt;/span&gt;&lt;/p&gt; &lt;p style="font-family: trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;‘Google Sitemaps’ offers an option to select a canonical URL for your site. Another way to achieve canonicalization is by adding a 301 redirect (permanent redirect). So, if you want your default URL to be the www version, then you can 301 redirect your non-www version to the www version. Having a single, canonical version of every URL on your site will improve your site rankings as well as the pagerank. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-2239525599323666851?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/2239525599323666851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=2239525599323666851' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/2239525599323666851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/2239525599323666851'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/single-canonical-url-for-better-google.html' title='Single Canonical URL for better Google ranking'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-6949654840405045559</id><published>2007-10-31T00:01:00.000-07:00</published><updated>2007-10-31T00:03:53.157-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Things To Remember When Creating a Site Map</title><content type='html'>&lt;ul style="font-weight: bold;"&gt;&lt;li&gt;&lt;span style="font-family: trebuchet ms;"&gt;Use plain text links.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: trebuchet ms;"&gt;      Search engine spiders can have a more difficult time "seeing" JavaScript. To receive the most benefits from having a site map, make sure that the links are created as plain text links!&lt;br /&gt;     &lt;br /&gt;&lt;/span&gt;&lt;ul style="font-weight: bold;"&gt;&lt;li&gt;&lt;span style="font-family: trebuchet ms;"&gt;Things To Remember When Creating a Site Map&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: trebuchet ms;"&gt;      There isn't a lot of sense in creating a site map if you don't put a text link to it on the front page of your site where site visitors and search engine spiders can easily find it.&lt;br /&gt;     &lt;br /&gt;&lt;/span&gt;&lt;ul style="font-weight: bold;"&gt;&lt;li&gt;&lt;span style="font-family: trebuchet ms;"&gt;      Use anchor text links.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: trebuchet ms;"&gt;      Use your exact page titles so that you can take advantage of anchor text back links. Once again this will increase link popularity for your site.&lt;br /&gt;     &lt;br /&gt;&lt;/span&gt;&lt;ul style="font-weight: bold;"&gt;&lt;li&gt;&lt;span style="font-family: trebuchet ms;"&gt;Add descriptive content.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: trebuchet ms;"&gt;      Many search engines don't like pages that are filled only with links. By adding descriptive content (much like search engines do) you can have a page filled with links and still have relevant content.&lt;br /&gt;     &lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: trebuchet ms;"&gt;&lt;span style="font-weight: bold;"&gt;Organize into categories.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: trebuchet ms;"&gt;      Remember that your site map isn't created just for search engines. Organize your site map into categories. By following the structure of a table of contents that you'd find in the front of a book, you'll make it much easier for your visitors to find what they are looking for!&lt;br /&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-6949654840405045559?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/6949654840405045559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=6949654840405045559' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/6949654840405045559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/6949654840405045559'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/things-to-remember-when-creating-site.html' title='Things To Remember When Creating a Site Map'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-36277276642545482</id><published>2007-10-30T23:00:00.000-07:00</published><updated>2007-10-30T23:01:52.536-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Content Optimization</title><content type='html'>&lt;!-- EDIT_AREA_BEGIN --&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family: trebuchet ms;"&gt; Good copy equals conversions. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; This is probably the hardest selling point to get across to a client when seo speak begins. Sure people know they need to get ranked in Google, and they know you need to build an online presence, and of course, they all know that they need to get traffic to their site. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; But site copy? Anytime that topic is brought up, most clients proudly boast that they have already posted their brochure's information on their site and that works just fine. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Well, it doesn't. Content optimization is a skill that few people possess. Words sell, images don't. You need to get the user to take action! So, in that spirit, here is a list of things to do and ones to avoid: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: trebuchet ms;"&gt;Things to do:&lt;/strong&gt;&lt;/span&gt;      &lt;ul style="font-family: trebuchet ms;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Use the main keyphrase you are targeting on every page, except for the home page.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Use keyphrases in your hyperlinks.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Create a page title that is intriguing and eye catching. Remember words sell, graphics don't.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Limit your keyword usage to 2 or 3 keywords per page. Otherwise, you may get tagged for keyword spamming.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Create supplemental content like FAQ pages, how-to pages, industry glossary and related articles about the product.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Use the description meta tag. Google refers to this when it can't find content or a listing in DMOZ.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Always keep an eye on competitors and how they rank for the same keywords.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Focus on the the pages that have your best conversion rates.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Think like a reporter, asking the five W questions (who, what, when, where, why).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Display your location. Studies indicate that people look for local vendors, even when online.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: trebuchet ms;"&gt;Things to avoid:&lt;/strong&gt;&lt;/span&gt;   &lt;ul style="font-family: trebuchet ms;"&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Inserting keywords into copyrighted material.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Forgetting what your audience is looking for. &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Leaving the title of your page as "Untitled".&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Using too many graphics.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Waiting to implement copy changes for expected seasonal sales. You need 6-months when optimizing seasonal content to give the engines time to adjust to your alterations.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Content optimization is a continual process of monitoring and updating. By staying true to this course, you'll see the results in your sales.    &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; -To your online success! &lt;/span&gt;&lt;/span&gt; &lt;!-- EDIT_AREA_END --&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-36277276642545482?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/36277276642545482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=36277276642545482' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/36277276642545482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/36277276642545482'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/content-optimization.html' title='Content Optimization'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-925031932579781901</id><published>2007-10-30T22:59:00.002-07:00</published><updated>2007-10-30T23:00:27.839-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Creating A #1 Rank in Google</title><content type='html'>&lt;!-- EDIT_AREA_BEGIN --&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family: trebuchet ms;"&gt; Impossible, right? Not really worth the time, right? Wrong on both accounts. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Many times while entering phrases into Google, I find a lot of somewhat related sites, but hardly ever anything exact. So why bother on getting these supposedly un-searched terms? &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Because there is a perception that having your site in the #1 spot in Google means that your site is an authority on that particular subject. As any experienced user knows, this is most often not the case, but perception is reality. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Granted, some of the phrases that you can get ranked on may not be very popular, but you never know what a user is going to enter into the search box, or do we ever know at what point of information gathering they are at. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;One of the most common traits of searching is that when a user firsts begins a search, they use a broad term, but as they get further along into their search, the phrases become more precise as they themselves filter out the un-related sites. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;This is the same concept of which a successful PPC campaign can be run. While it may be great to get tons of traffic for the keyword "shoes", if a user is really looking for "Nike running shoes", the site has wasted money on that search. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Another curious stat that web analytics reveal is that a consumer that comes to a site through PPC is not a life-time customer. They are usually interested in the quick fix, or easy solution. Compared to a user who arrives through organic search engine optimization, they are more likely to be lifetime consumers since they tend to trust a company that has "earned" it's way to the top of the rankings. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;By the time a user has a four to five keyword phrase entered in for their search query, chances are that they have already eliminated the "noise" and are focused on the "signal" i.e. the product or service that your site is offering. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;One final item to remember is that if you have an exact phrase that is not common to a search engine query, once it gets indexed, it will most like appear in the number one position since the search engines always try to find an exact match when other factors aren't available. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;  As an example, here are some articles I've written that have a #1 ranking in Google (as of March 14, 2007): &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=The+SEO+Halo+Effect&amp;amp;btnG=Search" target="_blank"&gt;The SEO Halo Effect&lt;/a&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=All+Links+Matter&amp;amp;btnG=Search" target="_blank"&gt;All Links Matter&lt;/a&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=The+Benefits+of+Black+Hat+Techniques&amp;amp;btnG=Search" target="_blank"&gt;The Benefits of Black Hat Techniques&lt;/a&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=It%27s+All+About+Me+Advertising&amp;amp;btnG=Search" target="_blank"&gt;It's All About Me Advertising&lt;/a&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=Automatic+SEO+&amp;amp;btnG=Search" target="_blank"&gt;Automatic SEO&lt;/a&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=Clinically+Proven+SEO+&amp;amp;btnG=Search" target="_blank"&gt;Clinically Proven SEO&lt;/a&gt;&lt;br /&gt;&lt;a style="font-family: trebuchet ms;" href="http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=Why+You+Need+Outbound+Links&amp;amp;btnG=Search" target="_blank"&gt;Why You Need Outbound Links&lt;/a&gt;&lt;span style="font-family: trebuchet ms;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; -To your online success! &lt;/span&gt;&lt;/span&gt;        &lt;!-- EDIT_AREA_END --&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-925031932579781901?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/925031932579781901/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=925031932579781901' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/925031932579781901'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/925031932579781901'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/creating-1-rank-in-google.html' title='Creating A #1 Rank in Google'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-1318600314339656769</id><published>2007-10-30T22:59:00.001-07:00</published><updated>2007-10-30T22:59:42.021-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Why Search Engines Fail</title><content type='html'>&lt;h1 style="font-size: 12px; font-family: trebuchet ms; font-weight: normal;"&gt;&lt;span style="font-size:100%;"&gt;Imagine asking a stranger for directions to a clothing store. Chances are, the stranger will tell you one of two replies. They'll direct you to the nearest clothing store they know of, or they'll send to to the last one they just passed. But you're looking for the latest Spongebob Squarepants kid's shirt. You didn't tell the stranger that, did you? Probably not. So, you got directions to the local Disney store, which of course, would not be selling any competitor's clothing.&lt;br /&gt;&lt;br /&gt;How did this happen? Simple. &lt;br /&gt;&lt;br /&gt;Like most of us, when we type something into a search engine, we just assume that the search engine knows what we mean. A computer can only do what we tell it to do, so that's why we may not get the desired results that we are seeking. Back when the 'Net was young (1990), you could get away with such simple phrases because there wasn't much content on the Internet as there is now. This is why when you're searching, be sure to be as specific as possible. The Search Engine's entire existance is to provide relevant and specific results to you, the user. Tell the engine more relevant phrases, and you will be rewarded accordingly.&lt;br /&gt;&lt;br /&gt;Even when searching for a singular or plural version of something, you will get different results. Some words are even more complex. For example, if you enter "wheelchair", Google will tell you there are about 1.4 million results. Add a space, and now you have "wheel chair" and Google will tell you that there are about 4.6 million results! Now to even complicate matters more, if you enter "wheel chairs" there are only 760,000 results. Remove the space and for "wheelchairs" you now get about 1.2 million results.&lt;br /&gt;&lt;br /&gt;How does this happen?&lt;br /&gt;&lt;br /&gt;Remember, the search engines are programmed to try and deliver the best document for each given keyword/phrase. Through a complex algorithm, they mathmatically determine which page has the most relevant content. They do this for every possible keyword and phrase that they are aware of. This why you see such a disparity in the search results.&lt;br /&gt;&lt;br /&gt;How can I rank for all of my similar keywords?&lt;br /&gt;&lt;br /&gt;Glad you asked. One of the many factors used in determining keyword relevancy is proximity. By using the variations of the spelling in a logical manner - such as the example I presented above, describing the different ways it can be spelled - the search engines will use this to determine that since your page talks about these variations of wheelchairs, this page must be relevant. Of course there are many other factors involved, but for the sake of this discussion, that's all we need.&lt;br /&gt;&lt;br /&gt;-To your online success! &lt;/span&gt;&lt;!-- EDIT_AREA_END --&gt;&lt;/h1&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-1318600314339656769?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/1318600314339656769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=1318600314339656769' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/1318600314339656769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/1318600314339656769'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/why-search-engines-fail.html' title='Why Search Engines Fail'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-5866325352322020673</id><published>2007-10-30T22:57:00.000-07:00</published><updated>2007-10-30T22:58:35.947-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>How to Get Your Site a Top Ranking in Google</title><content type='html'>&lt;!-- EDIT_AREA_BEGIN --&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family: trebuchet ms;"&gt; It's the new American dream. Your website appears in a top spot on Google for your chosen keyword. Next thing you know, orders start coming in faster than you can handle, and you are rolling in the money. If only it were so easy, right? &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Well, &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;It can be done. I've done it many times in many different industries. There is no secret, but rather, it's just knowing what to do. I've made just about every mistake one can make with a website, but I learned from every setback. If you were only allowed to do one thing to get ranked for your site in Google, without a doubt, all you'd need to do is get links for your site. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Yes, there are many other factors involved in getting your site to a top position. But this is the most powerful way as of this writing to get a top spot in Google. It's not just enough to have links pointing to your site, but you need to have your keyword "anchor linked" to your site. Anchor linking is when you use your keyword phrase as the click-able text for a link. So, instead of saying "Click Here", you would use "Widgets" as the link text. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Now, another point of consideration is determining what keyword/phrase you want to use to get your site found. Most times, people impulsively choose a one word phrase. While this would be a great way to bring traffic to your site, would it bring targeted traffic, with people looking specifically for your product or service? Most times when people type in a one letter keyphrase, they are in the beginning of their search. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; They may type in "Shoes", but are really looking for "Running Shoes". So, if you have a top ranking for shoes, do you serve that user's needs? Maybe, but they may also be looking for dress, casual, Women's, Men's, Children's, athletic, girl's, boy's, etc. This is why when you begin to optimize your site, you should focus on more targeted keyword phrases. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Suppose you sell a certain brand name of dress shoes. For this example, we'll call the famous brand XYZ. So, by getting anchor links as "XYZ Dress Shoes", you are already eliminating those users who are looking for another brand or line of shoe. Next, you need to make sure that the page that gets linked contains the on the page content with "XYZ Dress Shoes". If you would link to a page without relevant content, Google would view this link as possible spam, or more appropriately, irrelevant content. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Now, once you have compiled your list of keywords, you need to see which one are searched on the most. The best tool for this is WordTracker, and it is worth the tiny fee you need to pay to have access for one day. There are also free tools online that you can use, but WordTracker will give you the most accurate results. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Once you have run through your list of all your keywords, the obvious choice is to pick the ones with the highest amount of searches (and content relevant to your site!). The next step is to then begin the process of a link campaign. Now, I can already hear you complaining about doing a link exchange. This is only 1/3 of your campaign. The ideal method is to not only engage in a reciprocal link exchange, but to also engage in strategic linking. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Strategic linking is when you get a link to your site without having to return the favor. What's the best way to do this? Write an article just like this one. If I get one website to use this article and have it point to my site, I've just created another link to my site. Pretty easy, eh? &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;Since you have now engaged in a linking campaign, you should expect to see results in Google in as little as 4 days, and as far as 6 months. All of this is determined by where your links are coming from, and the popularity of the site from which the link came. Next, you need to get as many links as you can pointing to your site with your popular keyword phrase anchor linked to your site. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt;As I mentioned before, there many other factors that will only enhance your rankings in Google, but the implementation of a link campaign is the strongest method to get your site to a top ranking!  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; -To your online success! &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;!-- EDIT_AREA_END --&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-5866325352322020673?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/5866325352322020673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=5866325352322020673' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/5866325352322020673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/5866325352322020673'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/how-to-get-your-site-top-ranking-in.html' title='How to Get Your Site a Top Ranking in Google'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-3561693695964630557</id><published>2007-10-30T22:55:00.000-07:00</published><updated>2007-10-30T22:56:08.368-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='SEO Tips'/><title type='text'>Why You Need Outbound Links</title><content type='html'>&lt;span style="font-size:100%;"&gt;&lt;span style="font-family: trebuchet ms;"&gt; Just in case you've forgotten, an outbound link is a url that you have on your site that points to another website. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; In today's Google PR obsessed Internet world, everyone is completely focusing on getting in bound links to your site. While you should always be on a mission to get more sites to link to yours, you must not forget their polar opposites. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Remember, by having outbound links from your site, you are in essence "voting" for the site you link to. This is part of the entire ranking algorithm process for all the search engines. The idea is, that if two sites are similar in content and design, a site with more links pointing to it would be considered more important by the search engine. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; So then, why should you help out any other site? Actually, by carefully linking to other relevant sites, you are increasing the relevancy of your own site. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Pretend I have a pizza shop, and I am located in Anywhere, USA. It's a typical site that displays types of pizza, store location, hours, and coupons. I also know the power of outbound linking. For this case, I am going to link to 10 sites: Domino's, Pizza Hut, Little Ceaser’s &amp;amp; Papa Johns. Next, I link to 6 sites that are physically located in Anywhere, USA. (And their physical addresses are listed on their sites.) &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Now, I will switch roles and view the site as a search engine spider. I navigate through the site, and determine that this site is about pizza. Then I find a resource page and discover some well-known links (Domino's, Pizza Hut, Little Ceaser’s &amp;amp; Papa Johns - and as the spider I know that these are major players in the realm of pizza). Next, I find 6 links to sites located in Anywhere, USA. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; So, as a happy spider leaving the site, I now know that the site I just visited is about pizza (site content and links to the major players of the pizza industry), and that it is located in Anywhere, USA. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Next, I visit one of the 6 sites listed as a resource in Anywhere, USA. I find the local address, and it has the same zip code as the pizza site I was just at. Now I know how these two sites are related to each other. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Taking into account the fact that this local pizza shop has also linked to the major pizza chains, as the spider, I am lead to believe that this shop has relevancy to the zip code of Anywhere, USA. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; So, as the spider returns the information to the database to be processed in the algorithm, it has pre-sorted some search results based on the links your site points to. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; Another benefit of outbound linking is Geo Targeting, or Local search. There is a lot of speculation that local search is the next big trend in Search Marketing. While only time will tell, it won't hurt to have your physical address listed on your website for those who will be embracing local search. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; As an experiment, I created a site with a very unique url (to avoid the possibility of people finding it by accident), and I made it only 1 page long. The only thing the page consisted of were 80+ outbound links to relevant sites in the SEO industry, tools, forums and some tutorials. When the PageRank was first updated for the site, it came out of the box with a PR of 3. It has since fallen to a PR of 2 (now that I’ve pointed a few sites to it!). &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; The whole point of this experiment was to see how outbound links affect your own rankings of your site. I was able to generate a PR of 2 based entirely on linking to authority sites in the SEO industry. So, take the time to link to some relevant sites, the big names (if any), and enjoy the power of the easy, outbound link. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: trebuchet ms;"&gt; -To your online success! &lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;!-- EDIT_AREA_END --&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-3561693695964630557?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/3561693695964630557/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=3561693695964630557' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/3561693695964630557'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/3561693695964630557'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/why-you-need-outbound-links.html' title='Why You Need Outbound Links'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-6489267247011744648</id><published>2007-10-26T05:58:00.000-07:00</published><updated>2007-10-31T02:24:18.784-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='web Tips'/><title type='text'>Speed Up Your Web Page</title><content type='html'>&lt;p class="MsoNormal"  style="line-height: normal;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;When you try to improve the speed of your Web page, you must consider several things: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ul  type="disc" style="font-family:trebuchet ms;"&gt;&lt;li class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Images&lt;/b&gt;&lt;br /&gt;   Optimizing your images is the best way to improve the download speed of      your Web pages. A good rule of thumb is to strive for no one image being      larger than 10 Kb. This is especially hard with animations, but if you can      do it, you'll have some great fast images.&lt;br /&gt;&lt;br /&gt;   Also, after you optimize your images, you should call them in your HTML      with the height and width specified in the image tag. This will allow the      browser to continue rendering the Web page while the image downloads in      the background.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;HTML&lt;/b&gt;&lt;br /&gt;   Once you have your images down to a reasonable size, try streamlining your      HTML. You will find sites out on the Internet that advocate removing &lt;b&gt;all&lt;/b&gt;      extraneous tags, to the point of removing the final and . I do not think      this is a good idea, but you can remove all the unnecessary attributes      created by some editors, and use the defaults of tags as much as possible.      For example, if you create a table and you want the cellpadding and      cellspacing to be 2, then leave out those attributes. That is the default      for a table.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Page size&lt;/b&gt;&lt;br /&gt;   With small images and clean HTML, you can still end up with a page that      takes forever to download because there is so much information. If you are      striving for a speedy download, limit your page total size (including      images) to about 30 Kb. You'll still be on the high side if you're at 30      Kb, but 50% of the pages on the Web are 32 Kb or less, so you'll be in      good company. (From the Seventh Georgia Tech GVU WWW survey as quoted in &lt;a href="http://www.pantos.org/atw/35654.html"&gt;&lt;span style="color:blue;"&gt;"How      Much is Too Much"&lt;/span&gt;&lt;/a&gt;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Tables&lt;/b&gt;&lt;br /&gt;   Nested tables are a common cause of slow pages. They are so tempting to      use as they improve the layout enormously, but they take a long time for      the browser to render. It's not that the page didn't download, but with      multiple tables in tables, the browser has to work harder to display the      page. It cannot display any part of the page in the tables until it has      figured out how to render all the tables that are nested.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="margin-bottom: 12pt; line-height: normal;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Advertisements&lt;/b&gt;&lt;br /&gt;   Many advertisements are served from a different Web server than the Web      page. If that server is down or slow, it will impact the loading of any      page they are called from. The same is true for counters and other      external CGIs and images that are not on the same Web server.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Web Server&lt;/b&gt;&lt;br /&gt;   If you've optimized your graphics and HTML and kept the page size to a      minimum and it still takes forever to load, check out your Web server. Is      it getting more hits than it can handle? It might be time to upgrade the      machine or the connection between it and the world, if it isn't showing      the bandwidth you want.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-6489267247011744648?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/6489267247011744648/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=6489267247011744648' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/6489267247011744648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/6489267247011744648'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/speed-up-your-web-page.html' title='Speed Up Your Web Page'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-815438421101337110.post-4366019995038655291</id><published>2007-10-25T01:35:00.000-07:00</published><updated>2007-10-31T02:23:39.939-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Online'/><category scheme='http://www.blogger.com/atom/ns#' term='Experts Advices'/><title type='text'>7 Ways to Turn Visitors into Customers</title><content type='html'>&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Web users are impatient, ruthless and fickle creatures. It’s estimated that over 50% of visitors to your site will get bored and click away. Here are some quick ways to remedy that figure and turn more visitors into customers…&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;1. Cut your Copy by Half&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Your homepage has 10 seconds to capture that user. Urgent measures are required. If users are uncomfortable reading on-screen text, the amount of copy needs cutting. This doesn’t mean you can cut-and-paste your full catalogue onto the website and hope it works. Web copy requires brutal editing – aim for about 50% of what you’d write for printed brochures.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;2. Subheadings&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Subheadings are also useful for exactly the same reason. Bear in mind that a user is scanning the page for content, so try to make the keywords stand out however you can.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;3. Avoid Clichés and Word Litter&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Paragraphs should be short and contain one key idea each, to facilitate scanning. And avoid word litter – fluffy phrases like ‘we pride ourselves on high levels of customer satisfaction’ will send that badger next-door.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;4. Use a Slogan&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Stating your company’s purpose in a clear manner – in other words, providing a slogan for dummies – is vital on a website. If users can’t work out why Google has sent them to your site, they won’t stay. Your slogan needn’t be clever – a simple statement summarising your products is perfect, especially if your company name doesn’t speak for itself.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;5. Lure your Users In&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Card and Pirolli (1999) described how good websites create a strong ‘information scent’. In other words, provide simple navigation and an obvious trail from one page to the next. Use interesting information as bait to make sure your readers end up where you want them.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;6. Give Great Content&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Web experts all over the world emphasise the importance of features. Be they reviews, entertaining or factual articles, features will be picked up on search engines and will send new users to your site. Convert readers to customers by placing product links within and beneath the feature.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-weight: bold;font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;7. Added Incentives&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;Users are worth leaving treats out for. Update the home page with new links and features. Invite users to sign up for an e-newsletter, clearly stating that you will not pass their details around.&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:trebuchet ms;"&gt;&lt;span style="font-size:100%;"&gt;And make your site a bit different. Have some fun features, competitions or games, especially around occasions like Easter and Bank Holidays.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/815438421101337110-4366019995038655291?l=webexpertsonline.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webexpertsonline.blogspot.com/feeds/4366019995038655291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=815438421101337110&amp;postID=4366019995038655291' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/4366019995038655291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/815438421101337110/posts/default/4366019995038655291'/><link rel='alternate' type='text/html' href='http://webexpertsonline.blogspot.com/2007/10/7-ways-to-turn-visitors-into-customers.html' title='7 Ways to Turn Visitors into Customers'/><author><name>Ghazanfar. Mir</name><uri>http://www.blogger.com/profile/05410125574057022520</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='29' height='32' src='http://3.bp.blogspot.com/_bVIzaFZ0cgw/TNafXlDsB5I/AAAAAAAACnI/cWm1_c4t_AY/S220/dp.jpg'/></author><thr:total>0</thr:total></entry></feed>
