<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;AkAERn84fip7ImA9WhBbGEs.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200</id><updated>2013-05-18T02:18:27.136-07:00</updated><category term="Javascript-HTML" /><category term="firefox" /><category term="effects" /><category term="AdSense" /><category term="jQuery" /><category term="Internet" /><category term="SEO" /><category term="Case study" /><category term="blog-list" /><category term="twitter" /><category term="monetization" /><category term="blog-tutorial" /><category term="Guest Post" /><category term="Design" /><category term="web-traffic" /><category term="Windows" /><category term="Google" /><category term="HTML5" /><title>Useful and interesting web sites</title><subtitle type="html">This blog have blog tutorial, Javascript and HTML tips (including jQuery). Intention of this blog is to help readers and explain things in simple manner. This also include articles about web traffic and SEO (Search engine optimization).</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://interestingwebs.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>169</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/UsefulAndInterestingWebSites" /><feedburner:info uri="usefulandinterestingwebsites" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;AkMCQ305eSp7ImA9WhBXFEw.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-70072395013542029</id><published>2013-03-27T14:07:00.000-07:00</published><updated>2013-03-27T14:07:42.321-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-27T14:07:42.321-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><category scheme="http://www.blogger.com/atom/ns#" term="HTML5" /><title>HTML5 canvas</title><content type="html">&lt;p&gt;Canvas is perhaps one of those features of HTML5 which caused a great deal of stir among the web developers. In simple sense, canvas tag allows you to specify a region on your document where you can draw stuff. One thing to be noted is we have to use some sort of a scripting language (usually JavaScript) to interact with canvas. For today's article I'll assume you know the basics of JavaScript.&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;Creating a Canvas Element&lt;/h4&gt;
&lt;p&gt;Creating a canvas element is quite simple:
&lt;br /&gt;
&lt;pre&gt;&lt;b&gt;
&amp;lt;canvas height = "200" width = "200" id = "canvas1" &amp;gt;&amp;lt;/canvas&amp;gt;&lt;/b&gt;
&lt;/pre&gt;
It is advised to always give a height and width to canvas element. A id is also necessary as there can be more than one canvas element in a single page.&lt;/p&gt;
&lt;p&gt;
  The above code is actually as far as only HTML will take us, for functionalities of canvas
  we gotta use JavaScript as mentioned earlier. Please bear in mind any subsequent codes seen
  in this article must be written inside script tag or an external script file.
&lt;/p&gt;
&lt;h4&gt;Understanding the Context&lt;/h4&gt;

 &lt;p&gt;
  When we draw something on canvas, we actually retrieve the "context" of the canvas and put
  stuff on it. Broadly speaking, there are two types of context, 2d (mostly used) and 3d (still
  experimental). We will use the 2d context. Our first job is to identify our canvas element
  and create a handler to its 2d context. We do this by the following fragment:
 &lt;pre&gt;&lt;b&gt;
 var canvas = document.getElementById('canvas1');
 var ctx = canvas.getContext('2d');&lt;/b&gt;
 &lt;/pre&gt;We are first creating a handler to our canvas element (recall it had the id 'canvas1'), then
  we are retrieving its 2d context through the function getContext().
 &lt;/p&gt;
&lt;h4&gt;Basic Canvas Properties&lt;/h4&gt;
 &lt;p&gt;
  Remember we grabbed the context just on the previous section? Now we are going to set
  some of its properties. First let's have a look at three basic properties:
 &lt;/p&gt;

 &lt;ul&gt;
  &lt;li&gt;
   &lt;p&gt;
    &lt;em&gt;fillStyle:&lt;/em&gt;&lt;br&gt;
    style to use when filling. We can specify CSS colors,gradients or patterns (defaults to
    black).
   &lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
   &lt;p&gt;

    &lt;em&gt;strokeStyle:&lt;/em&gt;&lt;br&gt;
    style to use when filling. Constraints similar to that of fillStyle.
   &lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
   &lt;p&gt;
    &lt;em&gt;lineWidth:&lt;/em&gt;&lt;br&gt;
    width of the lines drawn by our imaginary pen on canvas.
   &lt;/p&gt;

  &lt;/li&gt;
 &lt;/ul&gt;
 &lt;p&gt;
  Drawing with colors and styles is a two step process. First one is to set the above properties.
  Other one is to perform the drawing operation i.e. calling the function which performs drawing.
 &lt;/p&gt;

&lt;h4&gt;Fill and Stroke&lt;/h4&gt;
 &lt;p&gt;
  While dealing with canvas you'll find two versions of a function to create rectangles.
  these are fillRect and strokeRect ("Rect" standing for rectangle). What fill does is it creates
  the solid shape filled with the designated color/pattern, whereas stroke simply outlines
  the shape with that color. An example is presented shortly.
 &lt;/p&gt;

 &lt;p&gt;
  Before we append the following fragment to our code, let's have a look at the arguments that
  the fillRect or strokeRect takes:&lt;br&gt;
  &lt;em&gt;x-coord, y-coord, width, height&lt;/em&gt;&lt;br&gt;
  The coordinates specify the position of upper-left corner of the rectangle, and width and
  height denotes the size of the rectangle. One reminder, the origin of the coordinate system
  is situated at the top-left corner of the canvas. Now we can append the following segment:
 &lt;/p&gt;
 &lt;pre&gt;&lt;b&gt;
 ctx.fillStyle = 'tan';
 ctx.fillRect(10, 10, 100, 100);
  
 ctx.lineWidth = 5;
 ctx.strokeStyle = 'red';
 ctx.strokeRect(10 , 10, 100, 100);&lt;/b&gt;
 &lt;/pre&gt;
 &lt;p&gt;

  First we chose the color tan and created a solid rectangle at (10, 10) having height and width
  of 100. Then we selected the lineWidth to be 5.
  Next we again selected a color, this time red; and stroked a rectangle at (10, 10)
  having similar dimensions as the previous rectangle. Notice although we have used colors
        as the property of fillStyle and such, we could have also used gradients or patterns, which
  is quite easily possible using CSS3.  
 &lt;/p&gt;

&lt;b&gt;Sample:&lt;/b&gt;
&lt;br /&gt;

&lt;canvas id="CanvasFill" width="120" height="120"&gt;
Your browser does not support the HTML5 canvas tag.
&lt;/canvas&gt;
&lt;script&gt;
    var canvas = document.getElementById('CanvasFill');
    var ctx = canvas.getContext('2d');

    ctx.fillStyle = 'tan';
    ctx.fillRect(10, 10, 100, 100);

    ctx.lineWidth = 5;
    ctx.strokeStyle = 'red';
    ctx.strokeRect(10, 10, 100, 100);
&lt;/script&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;b&gt;Sample code:&lt;/b&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;
&lt;b&gt;&amp;lt;canvas id=&amp;quot;CanvasFill&amp;quot; width=&amp;quot;120&amp;quot; height=&amp;quot;120&amp;quot;&amp;gt;
Your browser does not support the HTML5 canvas tag.
&amp;lt;/canvas&amp;gt;

&amp;lt;script&amp;gt;
    var canvas = document.getElementById(&amp;#39;CanvasFill&amp;#39;);
    var ctx = canvas.getContext(&amp;#39;2d&amp;#39;);
    &lt;FONT COLOR="brown"&gt;
    ctx.fillStyle = &amp;#39;tan&amp;#39;;
    ctx.fillRect(10, 10, 100, 100);

    ctx.lineWidth = 5;
    ctx.strokeStyle = &amp;#39;red&amp;#39;;
    ctx.strokeRect(10, 10, 100, 100);
    &lt;/FONT&gt;
&amp;lt;/script&amp;gt;

&lt;/b&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;h4&gt;Drawing Lines&lt;/h4&gt;
 &lt;p&gt;
  For drawing a line we are going to use four functions: beginPath, moveTo, lineTo and stroke.
  The function beginPath tells that we are going to create path. We move the imaginary pen
  to a location through lineTo function. Notice that by "moving the pen" I mean picking the
  tip of the pen up and then placing it down again at the designated coordinate. The function
   lineTo instructs  to draw a line starting from the current point to th point passed as parameter
  of lineTo. But the line is actually not drawn unless we call the stroke function. Let's have
  a look at the following fragment of code:
 &lt;/p&gt;
 &lt;pre&gt;&lt;b&gt;
  ctx.lineWidth = 1;
  ctx.strokeStyle = 'black';
  ctx.beginPath();
  ctx.moveTo(10, 10);
  ctx.lineTo(110, 110);
  ctx.stroke();
  ctx.lineTo(200, 110);
  ctx.stroke();&lt;/b&gt;
 &lt;/pre&gt;
 &lt;p&gt;

  We are setting the line width to be 1 and the color of the stroke to be black. Then we call the
  beginPath function. We move our imaginary pen to a point, in this case the point (10, 10).
  In the next line we instruct to create a line from (10, 10) to (110, 110). And finally to 
  ensure the line is drawn, we call the stroke function. Notice that we created another line
  from the point where the previous line ended. If we wanted to draw a line from a different point
  we would have needed to call another moveTo function.
 &lt;/p&gt;
&lt;b&gt;Sample:&lt;/b&gt;
&lt;br /&gt;&lt;br /&gt;

&lt;canvas id="CanvasStroke" width="200" height="150"&gt;
Your browser does not support the HTML5 canvas tag.
&lt;/canvas&gt;

&lt;script&gt;
    var canvas = document.getElementById('CanvasStroke');
    var ctx = canvas.getContext('2d');
 
    ctx.lineWidth = 1;
    ctx.strokeStyle = 'black';
    ctx.beginPath();
    ctx.moveTo(10, 10);
    ctx.lineTo(110, 110);
    ctx.stroke();
    ctx.lineTo(200, 110);
    ctx.stroke();
&lt;/script&gt;
&lt;br /&gt;
&lt;b&gt;Sample code:&lt;/b&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;
&lt;b&gt;
&amp;lt;canvas id=&amp;quot;CanvasStroke&amp;quot; width=&amp;quot;200&amp;quot; height=&amp;quot;150&amp;quot;&amp;gt;
Your browser does not support the HTML5 canvas tag.
&amp;lt;/canvas&amp;gt;

&amp;lt;script&amp;gt;
    var canvas = document.getElementById(&amp;#39;CanvasStroke&amp;#39;);
    var ctx = canvas.getContext(&amp;#39;2d&amp;#39;);
    &lt;FONT COLOR="brown"&gt;
    ctx.lineWidth = 1;
    ctx.strokeStyle = &amp;#39;black&amp;#39;;
    ctx.beginPath();
    ctx.moveTo(10, 10);
    ctx.lineTo(110, 110);
    ctx.stroke();
    ctx.lineTo(200, 110);
    ctx.stroke();
    &lt;/FONT&gt;
&amp;lt;/script&amp;gt;
&lt;/b&gt;&lt;/pre&gt;
 &lt;h4&gt;Rendering Text&lt;/h4&gt;
 &lt;p&gt;
  We can draw texts on canvas using fillText and strokeText functions. The arguments are:&lt;br&gt;
  &lt;em&gt;text x-coord y-coord&lt;/em&gt;&lt;br&gt;
  Before calling these functions, we can also specify properties by assigning values to the
  font property of our context. The order in which these properties are assigned is:&lt;br&gt;

  &lt;em&gt;font-style font-weight font-size font-face&lt;/em&gt;&lt;br&gt;
  The following code illustrates the complete method:
 &lt;/p&gt;
 &lt;pre&gt;&lt;b&gt;
  ctx.strokeStyle = 'black';
  ctx.fillStyle = 'black';
  ctx.font = "normal normal 24px Tahoma";
  ctx.fillText("Hello world", 10, 140);&lt;/b&gt;
 &lt;/pre&gt;

&lt;b&gt;Sample:&lt;/b&gt;
&lt;br /&gt;
&lt;canvas id="CanvasText" width="200" height="100"&gt;
Your browser does not support the HTML5 canvas tag.
&lt;/canvas&gt;

&lt;script&gt;
    var canvas = document.getElementById('CanvasText');
    var ctx = canvas.getContext('2d');

    ctx.strokeStyle = 'black';
    ctx.fillStyle = 'black';
    ctx.font = "normal normal 24px Tahoma";
    ctx.fillText("Hello world", 10, 40);
&lt;/script&gt;

&lt;br /&gt;
&lt;b&gt;Sample code:&lt;/b&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;
&lt;b&gt;
&amp;lt;canvas id=&amp;quot;CanvasText&amp;quot; width=&amp;quot;200&amp;quot; height=&amp;quot;100&amp;quot;&amp;gt;
Your browser does not support the HTML5 canvas tag.
&amp;lt;/canvas&amp;gt;

&amp;lt;script&amp;gt;
    var canvas = document.getElementById(&amp;#39;CanvasText&amp;#39;);
    var ctx = canvas.getContext(&amp;#39;2d&amp;#39;);
    &lt;FONT COLOR="brown"&gt;
    ctx.strokeStyle = &amp;#39;black&amp;#39;;
    ctx.fillStyle = &amp;#39;black&amp;#39;;
    ctx.font = &amp;quot;normal normal 24px Tahoma&amp;quot;;
    ctx.fillText(&amp;quot;Hello world&amp;quot;, 10, 40);
    &lt;/FONT&gt;
&amp;lt;/script&amp;gt;

&lt;/b&gt;&lt;/pre&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;
  The canvas of HTML5 has a vast domain. In this article I've tried to point out just some
        of the basic ideas. From here I'd suggest you search the net for a bit more info. As always
  &lt;a href = "http://www.w3schools.com/html/html5_canvas.asp" rel="nofollow"&gt;w3schools&lt;/a&gt; 
  has a precise collection of more or less all the features of canvas. Besides this
  &lt;a href = "https://developer.mozilla.org/en-US/docs/HTML/Canvas" rel="nofollow"&gt;mozilla developer site&lt;/a&gt; 
  can also turn out to be really helpful. Although at first canvas might
  seem a bit intimidating, it is actually quite a great tool to have at hand. Bottom line, this
  is by far the best light-weight option to create graphic objects on the fly.
 &lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/VeH6gAiUlVg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/70072395013542029/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=70072395013542029" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/70072395013542029?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/70072395013542029?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/VeH6gAiUlVg/html5-canvas.html" title="HTML5 canvas" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/03/html5-canvas.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkEFQ349cSp7ImA9WhBQGEw.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-6985843162842717339</id><published>2013-03-20T14:23:00.000-07:00</published><updated>2013-03-20T14:23:32.069-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-20T14:23:32.069-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>Javascript disable right click</title><content type="html">&lt;p&gt;In some situations some web admins think disabling a right click on their web page is a good idea.&lt;/p&gt;
&lt;p&gt;The reason for disabling a right click could be to:
&lt;ul&gt;
&lt;li&gt;protect and hide source code&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;protect images on web page&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;disable copy and paste functionality...&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;
&lt;p&gt;There are opinions that disabling right mouse click is a bad practice and you shouldn't do it on your site (find out why &lt;a href="http://www.sitepoint.com/dont-disable-right-click/" rel="nofollow"&gt;here&lt;/a&gt;). It can prevent some novice users from stealing on your site but more advanced users will find a way (to get image or take a look on your source code). &lt;/p&gt;
&lt;p&gt;In this article you will find how to:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;disable right click on whole HTML web page using onmousedown event&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;disable right click on whole page using attribute inside body tag&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;disable right click on some part of HTML page&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;disable right click on image using javascript&lt;/li&gt;
&lt;/ul&gt;
&lt;a href="http://4.bp.blogspot.com/-7RxPswRXGJ0/UTUNnHd31_I/AAAAAAAABB8/4SGpcQ98uUA/s1600/NoRightClick.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://4.bp.blogspot.com/-7RxPswRXGJ0/UTUNnHd31_I/AAAAAAAABB8/4SGpcQ98uUA/s320/NoRightClick.jpg" oncontextmenu="return false" alt="No Right click (disabled) with javascript" /&gt;&lt;/a&gt;
&lt;br /&gt;
&lt;h4&gt;Disable right click using javascript on HTML page&lt;/h4&gt;
&lt;p&gt;You can disable right click on your web page using javascript function which will show message box if right mouse button is clicked.&lt;/p&gt;
&lt;p&gt;Here is a code:&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
        function catch_click(e) {
            if (!e) var e = window.event;
            var right_click = (e.which ? (e.which == 3) : (e.button == 2));
            if (right_click) {
                alert(&amp;#39;Right clicking on this page is not allowed.&amp;#39;);
                return false;
            }
        }
        document.onmousedown = catch_click;
    &amp;lt;/script&amp;gt;
&lt;/FONT&gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;Brief explanation of code: When mouse button is clicked javascript function catch_click is called. If right button is clicked message box pop up and right click is canceled.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Disable right click on HTML page using body attribute&lt;/h4&gt;
&lt;p&gt;This method prevents context menu to appear when right click happened without message box on HTML page. It is very easy to implement.&lt;/p&gt;
&lt;p&gt;You just need to add this attribute to body element:&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;
&amp;lt;body &lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;oncontextmenu=&amp;quot;return false&amp;quot;&lt;/FONT&gt;&lt;/span&gt;&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;h4&gt;Disable right click on only part of HTML page&lt;/h4&gt;
&lt;p&gt;On the beginning of this article it was said that preventing users from using right click is a bad practice. So if you want to protect something on your page maybe is better practice to protect only this specific element.&lt;/p&gt;
&lt;p&gt;It is possible to use oncontext attribute on specific HTML element.&lt;/p&gt;
&lt;p&gt;To better explain we will show the example with HTML table with two columns. We will forbid right click only on First column. On Second column right click is possible.&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;&amp;lt;Table&amp;gt;
   &amp;lt;tr&amp;gt;
    &amp;lt;td oncontextmenu=&amp;quot;return false&amp;quot;&amp;gt;
     First column (no right click)
   &amp;lt;/td&amp;gt;
   &amp;lt;td&amp;gt;
     Second column
   &amp;lt;/td&amp;gt;
  &amp;lt;/tr&amp;gt;
&amp;lt;/Table&amp;gt;
&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;On td tag attribute &lt;i&gt;oncontextmenu&lt;/i&gt; is added and set to &lt;i&gt;"return false"&lt;/i&gt;. So on First column right click is disabled.&lt;/p&gt;
&lt;br /&gt;
&lt;Table style="border:1px solid black;"&gt;
   &lt;tr&gt;
    &lt;td oncontextmenu="return false" style="border:1px solid black;"&gt;
     No right click
   &lt;/td&gt;
   &lt;td style="border:1px solid black;"&gt;
     Second column
   &lt;/td&gt;
  &lt;/tr&gt;
 &lt;/Table&gt;
&lt;h4&gt;Disable right click on image using javascript&lt;/h4&gt;
&lt;p&gt;You can disable right click on image using the technique described in previous chapter. Just add &lt;i&gt;oncontextmenu&lt;/i&gt; attribute inside &lt;i&gt;img&lt;/i&gt; element.&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;
&amp;lt;img src=&amp;quot;../PathToImage&amp;quot; &lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;oncontextmenu=&amp;quot;return false&amp;quot;&lt;/FONT&gt;&lt;/span&gt; /&amp;gt;
&lt;/pre&gt;
&lt;p&gt;On the beginning of the article you can find image "No right click!" which can not be right clicked.&lt;/p&gt;







&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/sylWsd4nP08" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/6985843162842717339/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=6985843162842717339" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/6985843162842717339?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/6985843162842717339?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/sylWsd4nP08/javascript-disable-right-click.html" title="Javascript disable right click" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-7RxPswRXGJ0/UTUNnHd31_I/AAAAAAAABB8/4SGpcQ98uUA/s72-c/NoRightClick.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/03/javascript-disable-right-click.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUHRHc-fyp7ImA9WhBQEk0.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-274217766531811163</id><published>2013-03-13T13:40:00.000-07:00</published><updated>2013-03-13T13:40:35.957-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-13T13:40:35.957-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Guest Post" /><title>Keep Your Blogging Secure</title><content type="html">&lt;p&gt;Blogging is an important outlet for many people. Whether they do it for business, for school, or simply
as a way to fill their free time, the number of people who write blogs for one reason or another
increases every day, and as the years go by, blogs will only become an even more central part of our
culture and how we communicate.&lt;/p&gt;

&lt;p&gt;But when writing a blog, it is important to keep your information secure. Surfing the internet is fraught
with danger, and the process of publishing a blog only compounds the risks that the internet involves.
So for bloggers who are interested in keep their online activity safe, here are a couple tips on how to
manage risk and stay secure.&lt;/p&gt;

&lt;h4&gt;Keep Private Information Private&lt;/h4&gt;

&lt;p&gt;Remember, the information that goes on a blog is going to be forever public. Even if you delete your
blog, there are websites like Google and Archive.com that scrape everything that is published on the
internet and store it on their servers permanently. So consider what you want to be public, and what
might better be kept private. There are no doubt many young people who are blogging today who will
wish they had been more circumspect when the information they publish comes back to haunt them in
the future.&lt;/p&gt;
&lt;a href="http://1.bp.blogspot.com/-GIqapJ-v4BI/UUDaWoLg5fI/AAAAAAAABCM/e_i4yEB6Gqo/s1600/SecureBlogging.jpg" imageanchor="1" alt="Secure blogging" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-GIqapJ-v4BI/UUDaWoLg5fI/AAAAAAAABCM/e_i4yEB6Gqo/s320/SecureBlogging.jpg" /&gt;&lt;/a&gt;

&lt;p&gt;But this isn’t only about the future. Being too forthcoming now can expose you to online predators who
want to use your information against. The amount of information necessary to commit cyber fraud or
identity theft can be surprisingly small. Be careful that you are not disclosing too much on your blog. If
you do, strangers who come across that information can use it in all sorts of ways that can wreak havoc
on your personal and financial dealings.&lt;/p&gt;

&lt;h4&gt;Protect Your Site from Viruses&lt;/h4&gt;

&lt;p&gt;Many people host their own blogs, either on servers they administer or with cloud-hosting companies.
In these cases, their blogs can become vectors of online viruses without them even realizing it. They can
inadvertently transmit viruses to their servers and websites without intending to. Those viruses are then
passed along to their visitors. The best way to avoid this is to conduct all blogging activities over a &lt;a
href="http://www.vpnservices.net"&gt;VPN service&lt;/a&gt; , which will stop the transmission of viruses and
prevent third-parties from injecting viruses into your online data. This not only protects you, the author
of the blog, but it also protects all your readers from all potential harm.&lt;/p&gt;

&lt;p&gt;Veronica Clyde is a dedicated writer at VPNServices.net – a website where you can read about &lt;a
href="http://www.vpnservices.net"&gt;VPN services&lt;/a&gt; and Online Security. She also loves to share VPN
technology, Wordpress and Blogging tips.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/dfLqWNWee_0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/274217766531811163/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=274217766531811163" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/274217766531811163?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/274217766531811163?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/dfLqWNWee_0/keep-your-blogging-secure.html" title="Keep Your Blogging Secure" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-GIqapJ-v4BI/UUDaWoLg5fI/AAAAAAAABCM/e_i4yEB6Gqo/s72-c/SecureBlogging.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/03/keep-your-blogging-secure.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MEQHY-cCp7ImA9WhBRFUw.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-9171286471793860814</id><published>2013-03-05T13:36:00.000-08:00</published><updated>2013-03-05T13:36:41.858-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-05T13:36:41.858-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="web-traffic" /><title>Group pages for reporting in GA</title><content type="html">&lt;p&gt;Ok, using Google Anlytics make a easy to find how many pageviews get your web site or specific web page.
&lt;p&gt;But what if you want to know how many visitors get specific group of pages. For example you want to track only pages written in 2013 or just pages written by specific author or only pages about specific topic...&lt;/p&gt;
&lt;p&gt;This article is a guide how to make report for specific group of individually picked pages from your web site.&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;To better explain how to make reports of specific pages in GA we will explain:
&lt;ul&gt;
&lt;li&gt;How to report only on specifically picked pages&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;How to report pages written in 2012 instantly&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;How to make customized report for year 2012&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Track visits from all pages about some topic in GA&lt;/h4&gt;
&lt;p&gt;Maybe you want to know how many visits coming from some specific topic. For example how many visits drive topics about javacript.&lt;/p&gt;
&lt;p&gt;If it is the case you can easily get report in Google Analytics with the number of visits for all pages on your site which include keyword javascript in title. Just follow instructions.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In Google Analytics click on Content --&gt; Overview --&gt; Site Content --&gt; All Pages
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s1600/AllPagesGA.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s320/AllPagesGA.jpg" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Find and click link "advanced" next to the search bar&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-_1PBDC56H9c/UR06sFK1CKI/AAAAAAAAA_E/zIzR3NSLiLQ/s1600/AdvancedGoogleAnalytics.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-_1PBDC56H9c/UR06sFK1CKI/AAAAAAAAA_E/zIzR3NSLiLQ/s320/AdvancedGoogleAnalytics.jpg" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;new container will appear, in third button choose &lt;i&gt;Containing&lt;/i&gt; and in empty textbox type desired term. For purpose of this example it is "&lt;i&gt;javascript&lt;/i&gt;".
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-QZtSXcy8ueg/UR_ttMOocrI/AAAAAAAAA_w/4ExBms0kpNc/s1600/GoogleAnalyticsInclude.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-QZtSXcy8ueg/UR_ttMOocrI/AAAAAAAAA_w/4ExBms0kpNc/s1600/GoogleAnalyticsInclude.jpg" width="500" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;click on "Apply" and you will get report for all pages on your site or blog which have term "javascript" in title&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h4&gt;Track specifically picked pages on your site instantly in GA&lt;/h4&gt;
&lt;p&gt;Let's say I want to make a report for group of only two pages on my blog and those two pages are: http://interestingwebs.blogspot.com//2009/01/jscript-in-blogger-post.html and http://interestingwebs.blogspot.com//2009/06/javascript-in-external-file.html.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In Google Aalytics click on Content --&gt; Overview --&gt; Site Content --&gt; All Pages
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s1600/AllPagesGA.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s320/AllPagesGA.jpg" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Find and click advanced near search bar&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-_1PBDC56H9c/UR06sFK1CKI/AAAAAAAAA_E/zIzR3NSLiLQ/s1600/AdvancedGoogleAnalytics.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-_1PBDC56H9c/UR06sFK1CKI/AAAAAAAAA_E/zIzR3NSLiLQ/s320/AdvancedGoogleAnalytics.jpg" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;new container will appear, in third button choose &lt;i&gt;Matching RegExp&lt;/i&gt; and in empty textbox type second part of URL of page you want to track. We want to track two pages so we can use or operator : |. &lt;br /&gt;&lt;br /&gt;In our example it would be: "2009/01/jscript-in-blogger-post.html|2009/06/javascript-in-external-file.html".
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/-hHwF5doFNnU/UR0_9Hhk-0I/AAAAAAAAA_Y/hOwHRHBJxps/s1600/IncludeRegExp.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://3.bp.blogspot.com/-hHwF5doFNnU/UR0_9Hhk-0I/AAAAAAAAA_Y/hOwHRHBJxps/s1600/IncludeRegExp.jpg" width="500" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;click on "Apply" and you will get report for only two specific pages&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h4&gt;Get visits report for all pages written in selected year with Google Analytics&lt;/h4&gt;
&lt;p&gt;It can be useful to find how many visit drive all pages on your site written in one year. For example I want to know how many visits get my pages written in 2012 for last month.&lt;/p&gt;
&lt;p&gt;This can be done with Google Analytics but only if the year in URL of your individual pages. I use blogspot blog and year can be read from URL.&lt;/p&gt; 
&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;http://interestingwebs.blogspot.com/&lt;b&gt;2013&lt;/b&gt;/02/how-to-make-clickable-picture-in-html.html&lt;/p&gt;
&lt;p&gt;From this URL we can conclude article is written in year 2013 and in second (2) month (February).&lt;/p&gt;
&lt;p&gt;So, if permalinks on your site are structured in similar way you can use this method to make reports based on year when article is published.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;In Google Aalytics click on Content --&gt; Overview --&gt; Site Content --&gt; All Pages
&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s1600/AllPagesGA.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s320/AllPagesGA.jpg" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Find and click advanced near search bar&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-_1PBDC56H9c/UR06sFK1CKI/AAAAAAAAA_E/zIzR3NSLiLQ/s1600/AdvancedGoogleAnalytics.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-_1PBDC56H9c/UR06sFK1CKI/AAAAAAAAA_E/zIzR3NSLiLQ/s320/AdvancedGoogleAnalytics.jpg" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;new container will appear, in third button choose &lt;i&gt;Containing&lt;/i&gt; and in empty textbox type year in this case 2012.
&lt;a href="http://4.bp.blogspot.com/-1LWCUoW4MKs/UR_x6nu2-LI/AAAAAAAAA_4/KjtPLVGSkpI/s1600/GoogleAnalyticsFilterByYear.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://4.bp.blogspot.com/-1LWCUoW4MKs/UR_x6nu2-LI/AAAAAAAAA_4/KjtPLVGSkpI/s1600/GoogleAnalyticsFilterByYear.jpg" width="500" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;click on "Apply" and you will get report only for two specific pages&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h4&gt;Make custom report for posts written in selected year whch can be reused&lt;/h4&gt;
&lt;p&gt;Now you know how to group pages by specific criteria and make a reports for them. But it have no sense to every time you need such a report you must to create it from scratch. To avoid this you can make custom report which can be used later.&lt;/p&gt;
&lt;p&gt;So here is example which will help you to learn some basic steps for creating custom reports. This example learn you how to create and use custom report which will report number of Pageviews for all pages written in 2012 year.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Find and click "&lt;i&gt;Customization&lt;/i&gt;" in Google Analytics
&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-xh2QzDiJYKE/USDJ3lvir8I/AAAAAAAABAI/sMCRfZzBBGU/s1600/GACustomization.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-xh2QzDiJYKE/USDJ3lvir8I/AAAAAAAABAI/sMCRfZzBBGU/s320/GACustomization.jpg" width="200" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;click "&lt;i&gt;New Custom Report&lt;/i&gt;"
&lt;br /&gt;
&lt;a href="http://3.bp.blogspot.com/-peBJwfVyyiU/USDKpZZ7ALI/AAAAAAAABAQ/LBvVpJgwIQw/s1600/GANewCustomReport.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://3.bp.blogspot.com/-peBJwfVyyiU/USDKpZZ7ALI/AAAAAAAABAQ/LBvVpJgwIQw/s1600/GANewCustomReport.jpg" width="150" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;in "&lt;i&gt;General information&lt;/i&gt;" enter title, for example "2012 pages"&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;in Report content choose Name, Metric Groups and Dimension Drilldowns. For this example for &lt;i&gt;Name&lt;/i&gt; type "&lt;b&gt;2012 pages&lt;/b&gt;", for &lt;i&gt;Metric Group&lt;/i&gt; choose &lt;b&gt;Pageviews&lt;/b&gt;, for &lt;i&gt;Dimension Drilldowns&lt;/i&gt; choose &lt;b&gt;Pages&lt;/b&gt;.
&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/-5vigrthqWUc/USDNuMAGwoI/AAAAAAAABAg/PBOaZV2x2kg/s1600/GACustomReportReportContent.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://1.bp.blogspot.com/-5vigrthqWUc/USDNuMAGwoI/AAAAAAAABAg/PBOaZV2x2kg/s1600/GACustomReportReportContent.jpg" width="550"  /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;in Filter tab set first button to "&lt;b&gt;Include&lt;/b&gt;", second button to "&lt;b&gt;Page&lt;/b&gt;"&lt;/li&gt;, third button to "&lt;b&gt;Regex&lt;/b&gt;" and fourth Textbox to &lt;b&gt;2012&lt;/b&gt;&lt;br /&gt;
&lt;a href="http://2.bp.blogspot.com/-R6nsy1uCNKg/USDPb44fk2I/AAAAAAAABAs/YcCG3_BbM9k/s1600/GACustomReportFilter.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://2.bp.blogspot.com/-R6nsy1uCNKg/USDPb44fk2I/AAAAAAAABAs/YcCG3_BbM9k/s1600/GACustomReportFilter.jpg" width="550" /&gt;&lt;/a&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;li&gt;Save custom report and now you can see your Custom Report by clicking Custom Report --&gt; 2012 pages&lt;br /&gt;
&lt;a href="http://4.bp.blogspot.com/-63Yyx3Bak8M/USDRDUq8_6I/AAAAAAAABA8/t7FVSloYMk8/s1600/GACustomReportResultSm.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://4.bp.blogspot.com/-63Yyx3Bak8M/USDRDUq8_6I/AAAAAAAABA8/t7FVSloYMk8/s320/GACustomReportResultSm.jpg" /&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/P9kfZJn20NQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/9171286471793860814/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=9171286471793860814" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/9171286471793860814?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/9171286471793860814?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/P9kfZJn20NQ/group-pages-for-reporting-in-ga.html" title="Group pages for reporting in GA" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-3LE4w1vFNWU/UR03Up9n9pI/AAAAAAAAA-4/QvhNoBTY3pw/s72-c/AllPagesGA.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/03/group-pages-for-reporting-in-ga.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIGRH09fyp7ImA9WhBSE0Q.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-2216550526614704517</id><published>2013-02-20T13:40:00.000-08:00</published><updated>2013-02-20T13:42:05.367-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-20T13:42:05.367-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="HTML5" /><category scheme="http://www.blogger.com/atom/ns#" term="Guest Post" /><title>How to Make Older Browsers Compatible with HTML5</title><content type="html">&lt;p&gt;
  In the past couple of years the web industry has seen a sudden boom in regards to HTML5. Although
  technically for the full specification to get approved we'll have to wait till the end of 2014, this
  is not stopping developers from writing codes in HTML5. Most, if not all, modern browsers have done 
  a more or less good job in implementing the features of HTML5 (we all know which one doesn't!).
 &lt;/p&gt;
 
 &lt;p&gt;
  Unfortunately not all browsers have been able to implement all the new features that HTML5 is 
  offering. So the developers often have to pay some extra care to make their code compatible with
  older browsers. In this article I'll try to point out some ways by which we can make older
  browsers compatible with HTML5. A little heads up though, this is about making browsers compatible
  with HTML5, not CSS3 (actually some aspects described are related to both, but our target is HTML5).
 &lt;/p&gt;
 
 &lt;h4&gt;Getting to Know the Browsers&lt;/h4&gt;

 
 &lt;p&gt;
  Before we get into making our code compatible and all that, we first need to have a clear idea on
  what actually the browsers can do. After all, what's the point of trying to teach someone what
  he/she already knows, right? Much to our advantage, there are some great sites which offer us
  considerable insight on browser features.
 &lt;/p&gt;
 
 &lt;ul&gt;
  &lt;li&gt;
   &lt;em&gt;&lt;a href = "http://fmbip.com"&gt;FindMeByIP&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
   On this site you'll find several charts where you can see a list of HTML5 features (and also 
   CSS3) and info about which browser supports what feature. You can actually do it two ways, you
   can go to fmbip.com, in which case you'll get the info on the browser you are visiting the 
   url by; or you can go to findmebyip.com/litmus, in which case you'll get a list of info on
   opera, chrome, mozilla, safari and IE versions 6, 7, 8, 9.
&lt;a href="http://3.bp.blogspot.com/-0sqVIu8WGlo/USUhgYyiSCI/AAAAAAAABBo/VOOIJ8ewh-0/s1600/WhatsMyIpSm.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://3.bp.blogspot.com/-0sqVIu8WGlo/USUhgYyiSCI/AAAAAAAABBo/VOOIJ8ewh-0/s320/WhatsMyIpSm.jpg" /&gt;&lt;/a&gt;
  &lt;/li&gt;
  &lt;li&gt;

   &lt;em&gt;&lt;a href = "http://caniuse.com"&gt;CanIUse&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
   This site also has a comprehensive listing of compatibility info (color coded, always helps). 
   You can search for a particular feature or just skim through all that are listed. This is
   actually one of the sites I have been frequently visiting since I first started coding in
   HTML5 and CSS3.
  &lt;/li&gt;
  &lt;li&gt;
   &lt;em&gt;&lt;a href = "http://html5please.com"&gt;HTML5Please&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
   This site is a bit different than the previous two. It does not contain a pin pointed list of what
   each browser can do, rather it gives us suggestions about what measures we should take regarding
   various features: whether we should totally avoid, use backup (i.e. polyfills, more on this later),
   use with caution or freely use a particular feature. According to the front page of this site, the
   recommendations are based on the experience of web developers. So it can turn out to be really
   handy in practical usage.
  &lt;/li&gt;
  
  &lt;li&gt;
   &lt;em&gt;&lt;a href = "http://browsershots.org"&gt;Browsershots&lt;/a&gt;&lt;/em&gt;&lt;br&gt;

   Browsershots makes screenshots of your web design in different operating systems and browsers.
   Not really informative, but to have a quick glimpse of what our page will look in different 
   browsers, quite an impressive site.
  &lt;/li&gt;
  
  &lt;li&gt;
   &lt;em&gt;&lt;a href = "http://spoon.net"&gt;Spoon.net&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
   I personally think this is an awesome site. The Spoon.net Browser Sandbox provides us
   a method of cross-browser testing. All we have to do is just click run for any browser
   from the given list to launch it instantly. By the way you have to have an account to use its
   feature, and guess what, account creation is free!
  &lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;p&gt;
  Now that we know we can thoroughly investigate abilities of various browsers, let's get them
  compatible with HTML5. One thing that you'll see in common in most of these methods is the 
  use of JavaScript. Let's list our options first and then we'll start cracking them one by one.
 &lt;/p&gt;

 
 &lt;h4&gt;Ways to Make Older Browsers HTML5 Compatible&lt;/h4&gt;
 
 &lt;ul&gt;
  &lt;li&gt;Pure ol' JavaScript&lt;/li&gt;
  &lt;li&gt;html5shiv (also known as html5shim)&lt;/li&gt;
  &lt;li&gt;modernizr&lt;/li&gt;
  &lt;li&gt;HTML5 Boilerplate&lt;/li&gt;

  &lt;li&gt;Google Chrome Frame (especially for IE)&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;p&gt;
  Before I proceed further, I'd like to make one thing very clear: using the above mentioned ways
  does not make our browser all of a sudden capable of implementing all the features that HTML5
  offers, in most cases it just makes the browser recognize that there is a tag with a specified name.
  For example, using the first 3 ways you can make older browsers know that there is a tag named 
  'canvas', but you can't really perform actions which canvas really offers (note: I am saying HTML5 
  Boilerplate supports canvas because it actually makes IE render web pages using Google Chrome Frame,
  which happens to support canvas).
 &lt;/p&gt;
 
 &lt;h4&gt;Custom JavaScript&lt;/h4&gt;
 &lt;p&gt;
  This is the elementary way of letting the browser know what new tags we are going to use if it
  is not familiar with them already. Say for example we want to use the tag "header". This is a tag
  which IE versions prior to 9 don't understand. So here's what we can do:&lt;br&gt;

  &lt;pre&gt;
   &amp;lt;!--[if lt IE 9]&amp;gt;
    &amp;lt;script type="text/javascript"&amp;gt;
      document.createElement("header");
    &amp;lt;/script&amp;gt;
   &amp;lt;![endif]--&amp;gt;
  &lt;/pre&gt;

  It goes without saying that we have to place the piece of code between the "head" tags. The code
  snippet is quite self explanatory; even then, let's have a quick look at it. At the very first
  line we are starting a commented section, which basically says if the browser is less than IE
  version 9, interpret the following code; otherwise ignore what's in between the "if - endif"
  tags. Inside the script tags, we just have to call the createElement() function with the 
  appropriate parameter. As an instance, if we also wanted to use "nav" tag we would have added
  the statement document.createElement("nav") in between script tags.
 &lt;/p&gt;
 
 &lt;h4&gt;html5shiv&lt;/h4&gt;
 &lt;p&gt;
  As stated before, it's also known as html5shim. So what is a shim? It is an application compatibility 
  workaround (for those of you who have already googled it, yup, I took it from wikipedia). html5shim is
  one of the most popular polyfills (remember I stated the term "polyfill" previously? here it comes!).
  Paul Irish gave a simple definition of polyfills. If you are wondering who is Paul Irish, just know
  that he is sort of a front-end wizard in web industry. According to him polyfill is “a shim that
  mimics a future API, providing fallback functionality to older browsers”. You can download html5shiv
  &lt;a href = "http://code.google.com/p/html5shiv"&gt;here&lt;/a&gt;.
 &lt;/p&gt;
 &lt;p&gt;
  In case you are interested in technicalities, html5shiv sort of works by following the first method
  described i.e. creating element through JavaScript. After you download it, all you need to do is 
  include the following snippet inside "head" tag:&lt;br&gt;

  &lt;pre&gt;
   &amp;lt;!--[if lt IE 9]&amp;gt;
    &amp;lt;script src="dist/html5shiv.js"&amp;gt;&amp;lt;/script&amp;gt;
   &amp;lt;![endif]--&amp;gt;
  &lt;/pre&gt;
 &lt;/p&gt;
 
 &lt;h4&gt;modernizr&lt;/h4&gt;

 &lt;p&gt;
  A really worthy name, it does make us modern (at least in regards to front-end development,
  that's for sure!). The best place to learn about modernizr is its
  &lt;a href = "http://modernizr.com"&gt;official site&lt;/a&gt;. But don't worry; I'm not leaving you empty-handed.
  In short, what modernizr does is perform feature detection first. Note that I said "feature"
  detection, not "browser" detection. That basically means it finds out what our browser can do, not what
  browsers we are using. It then attaches necessary classes to our "html" tag. Say for example our
  browser does not support "canvas" tag, so a class named "no-canvas" will be added to our "html"
  tag. In the opposite case the class added would have been "canvas". So what do we do to use 
  modernizr? Same as before, we download a copy of modernizr.js (you can find a link in the
  official site) and add the following code inside "head" tag:&lt;br&gt;
  &lt;pre&gt;
   &amp;lt;script src="js/modernizr.js"&amp;gt;&amp;lt;/script&amp;gt;
  &lt;/pre&gt;
  It's worth noting that we can use modernizr to detect feature within our JavaScript, such as:
  &lt;pre&gt;

   if(Modernizr.geolocation){
    
   }
  &lt;/pre&gt;
 &lt;/p&gt;
 
 &lt;h4&gt;HTML5 Boilerplate&lt;/h4&gt;
 &lt;p&gt;
  This is what I'd like to say is the ultimate blueprint. The package contains modernizr and jquery
  library. It also has normalize.css (I left out normalize from previous descriptions
  as it is related to CSS). You can find a link to download html5boilerplate from its 
  &lt;a href = "http://html5boilerplate.com"&gt;website&lt;/a&gt;. Once downloaded, if you explore the folder
  you'll find all the files I've previously mentioned. The index.html is where your html goes. To
  simply define, this is a template for implementing HTML5.
 &lt;/p&gt;
 
 &lt;h4&gt;Google Chrome Frame (Abbreviated as GCF)&lt;/h4&gt;

 &lt;p&gt;
  For those of you who are really frustrated with IE, I saved the best for the last. Google Chrome
  Frame is simply a plug-in for IE which lets it render a webpage the same way google chrome would.
  Of course the downside is you can't use the features not supported by google chrome, but trust me,
  the amount of such features is negligible compared to IE. As far as I know, chrome ranks the second
  in regards to adopting HTML5 features (Maxthon being first). You can check the current standings from 
  the site &lt;a href = "http://html5test.com"&gt;html5test&lt;/a&gt;. We basically have to do two things to make
  a page be displayed using Google Chrome Frame in IE.&lt;br&gt;&lt;/br&gt;
  Firstly, we have to make sure that the viewer's IE already has the plug-in installed. Frankly
  speaking, there is no way to force the user to install GCF, but at least we can prompt the
  user to install it. The developer's site chromium.org gives a  way to use a JavaScript file 
  named "CFInstall.js" which exactly does that. You can find an example of using "CFInstall.js" 
  &lt;a href = "http://www.chromium.org/developers/how-tos/chrome-frame-getting-started"&gt;here&lt;/a&gt;. For
  your convenience I'm presenting the code below:&lt;br&gt;
  
  &lt;pre&gt;
&amp;lt;html&amp;gt;

&amp;lt;body&amp;gt;
 &amp;lt;script type=&amp;quot;text/javascript&amp;quot; 
 src=&amp;quot;http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;

  &amp;lt;style&amp;gt;
  /* 
  CSS rules to use for styling the overlay:
   .chromeFrameOverlayContent
   .chromeFrameOverlayContent iframe
   .chromeFrameOverlayCloseBar
   .chromeFrameOverlayUnderlay
   */
   &amp;lt;/style&amp;gt; 

   &amp;lt;script&amp;gt;

   // You may want to place these lines inside an onload handler
   CFInstall.check({
       mode: &amp;quot;overlay&amp;quot;,
       destination: &amp;quot;http://www.waikiki.com&amp;quot;
            });
   &amp;lt;/script&amp;gt;
   &amp;lt;/body&amp;gt;
   &amp;lt;/html&amp;gt;
  &lt;/pre&gt;

  
  Secondly, we have to give instructions to our page to use GCF. We
  do this by adding the following simple meta inside "head" tag:&lt;br&gt;
  &lt;pre&gt;
   &amp;lt;meta http-equiv="X-UA-Compatible" content="chrome=1"&amp;gt;
  &lt;/pre&gt;
 &lt;/p&gt;
 
 &lt;h4&gt;HTML5 Cross Browser Polyfills&lt;/h4&gt;
 &lt;p&gt;

  Remember I said taking certain measures as stated above will not actually make our browser
  able to use all the features provided by HTML5, but rather make our browser knowledgeable
  on the fact that there are certain tags? For those of you who became heartbroken, take a look
  at this 
  &lt;a href = "https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills"&gt;site.&lt;/a&gt;.
  It provides a list of fallback options for HTML5 features.
 &lt;/p&gt;
 
 &lt;p&gt;
  Before I conclude I'd like to mention one thing. HTML5 is gaining popularity at a very high rate,
  and the browsers are also catching up nicely. After a few years I think there won't be the 
  concept of making browsers "compatible with HTML5" (and sadly my so thoughtful article
  will become obsolete). But till then, we certainly have to keep our eyes open and take necessary
  measures.
 &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/E0LfPbVkPJ0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/2216550526614704517/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=2216550526614704517" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/2216550526614704517?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/2216550526614704517?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/E0LfPbVkPJ0/how-to-make-older-browsers-compatible.html" title="How to Make Older Browsers Compatible with HTML5" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-0sqVIu8WGlo/USUhgYyiSCI/AAAAAAAABBo/VOOIJ8ewh-0/s72-c/WhatsMyIpSm.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/02/how-to-make-older-browsers-compatible.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08HRXw8eCp7ImA9WhBTGE4.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-759578984114427891</id><published>2013-02-14T02:51:00.000-08:00</published><updated>2013-02-14T03:03:54.270-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-14T03:03:54.270-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Guest Post" /><title>Using Images to Make Your Pages Pop</title><content type="html">&lt;p&gt;So, you've set up a blog, invested in some quality &lt;a href="http://themefuse.com"&gt;
WordPress premium themes &lt;/a&gt; to make it look amazing, and now you're ready to
add some images. Adding images to a blog post is quite simple; adding quality images,
however, is something else altogether.&lt;/p&gt;

&lt;h4&gt;Cell Phone Cameras&lt;/h4&gt;
&lt;p&gt;With the advent of cell phone cameras, suddenly everyone's a photographer. Whether
it's blogs or social media pages, tweets or whatever, you can't swing a run-on sentence
without hitting a camera-phone pic. What's wrong with that? A picture paints a
thousand words, doesn't it? Exactly! And if you post a fuzzy, poor quality cell phone
picture, the word that's going to come across loud and clear is amateur!&lt;/p&gt;

&lt;h4&gt;Poor Resolution&lt;/h4&gt;
&lt;p&gt;Cell phone cameras are great; you can take candid shots and send them out to friends
and family almost instantly. These images are great for viewing in the window of a
cell phone, but probably won't look as good blown up on a large computer screen.
Technology is improving all the time, but by and large, most cell phone cameras have
poor resolution and not a lot of great features.&lt;/p&gt;

&lt;h4&gt;Why More Resolution is Better&lt;/h4&gt;
&lt;p&gt;Your photos should have at least 5 megapixels of resolution, and 10 is even better.
While some will argue that you don't need so much resolution unless you intend to
blow your photos up into posters, the added resolution allows you to crop to your
heart's desire. If you start with a 10 megapixel photo and crop out 50 percent of it, what
remains is a basically a 5 megapixel photo. You might decide you only want one face
out of a whole crowd, and starting with higher resolution will allow you to crop it out and
enlarge it and still have a decent photo.&lt;/p&gt;
&lt;a href="http://4.bp.blogspot.com/-p2tiKgGpn8w/URzEPPY5OwI/AAAAAAAAA-o/7yxHrbtNgCQ/s1600/CameraShootingTips.jpg" imageanchor="1" &gt;&lt;img border="0" src="http://4.bp.blogspot.com/-p2tiKgGpn8w/URzEPPY5OwI/AAAAAAAAA-o/7yxHrbtNgCQ/s320/CameraShootingTips.jpg" /&gt;&lt;/a&gt;

&lt;h4&gt;Crop, Crop, Crop Your Photos&lt;/h4&gt;
&lt;p&gt;Cropping sets the professional apart from the amateur. In professional artwork, photos
are seldom used as they are taken. Don't be afraid to crop out the extraneous detail.
Cropping a photo puts more emphasis on the subject, and allows you to frame it more
clearly. Cropping also allows you to get rid of that extra arm, shoulder, or half a person
on the edge of the photo. Done artistically, cropping can also make your photos look
more edgy and modern. Another consideration is cropping to fit the layout of your
WordPress theme where you want to post the image.&lt;/p&gt;

&lt;h4&gt;Adjust the Lighting&lt;/h4&gt;
&lt;p&gt;Whether you use a professional program or simply the software that came with
your camera, you should always adjust lighting levels, brightness, contrast, hue and
saturation. Even in "auto" mode, most point and shoot camera photos will need light
and color adjustments for optimal image results. Take some time and play with the
results. Changing the hue can give your image a cooler or warmer look, and increasing
the saturation can make the colors pop.&lt;/p&gt;

&lt;h4&gt;Bag the Flash&lt;/h4&gt;
&lt;p&gt;Use flash sparingly. A good camera will take photos quite well without a flash. Using
flash tends to white out the picture. Dark photos can be lightened; the information is
still there in the darkness. Black is rarely truly black. The reverse is not true for white,
however. White in a photo means lost information. Even the best editing tools cannot
bring it back.&lt;/p&gt;

&lt;h4&gt;Image Stabilization&lt;/h4&gt;
&lt;p&gt;Sometimes referred to as "anti-shake" or "blur reduction," this feature is a must if
you're not using your camera on a tripod. Even the steadiest of hands can shake
imperceptibly, and most photos are taken "on the fly" with subjects and cameras all
moving at once. Since you're not a professional shooting dozens of shots every few
seconds, this will guarantee that your "money" shot doesn't end up blurry.&lt;/p&gt;

&lt;h4&gt;Rename Your Image File&lt;/h4&gt;
&lt;p&gt;Give your image file a descriptive name to help it pop up on Internet image searches.
WordPress themes usually allows you to input a description when you upload an image,
but including a keyword in the file name itself is a sure sign of a pro.&lt;/p&gt;

About author:
&lt;br /&gt;
Olga Ionel is a creative writer at &lt;a href="http://themefuse.com"&gt; ThemeFuse &lt;/a&gt; – a
top provider of WordPress themes. She is passionate about studying online marketing
industry and sharing informative tips.


&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/2bF1nk89iRg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/759578984114427891/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=759578984114427891" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/759578984114427891?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/759578984114427891?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/2bF1nk89iRg/using-images-to-make-your-pages-pop.html" title="Using Images to Make Your Pages Pop" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-p2tiKgGpn8w/URzEPPY5OwI/AAAAAAAAA-o/7yxHrbtNgCQ/s72-c/CameraShootingTips.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/02/using-images-to-make-your-pages-pop.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4HQnk8eSp7ImA9WhBTEks.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-4497738990802148746</id><published>2013-02-06T13:08:00.000-08:00</published><updated>2013-02-07T11:05:33.771-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-02-07T11:05:33.771-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>How to make clickable picture in HTML</title><content type="html">&lt;p&gt;This short tutorial will learn you how to make a clickable picture in HTML web page.&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;What is clickable picture?&lt;/p&gt;
&lt;p&gt;Clickable picture is picture which will lead you to specific web page when you click on that picture.&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;To better explain what is clickable picture take a look at image below this text. If you click this image, post "Make clickable links and clickable images" will be opened.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://interestingwebs.blogspot.com/2013/01/make-clickable-links-and-clickable.html" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="57" width="339" src="http://3.bp.blogspot.com/-p6CG36Rj9xg/UPvWiPD5SKI/AAAAAAAAA-Y/vjOb89JHAng/s400/ClickableImage.jpg" alt="Clickable picture" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/br&gt;&lt;/br&gt;&lt;/br&gt;&lt;/br&gt;
&lt;h4&gt;HTML code for: How to make clickable picture&lt;/h4&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;a href=&amp;quot;URLToLinkedWebPage&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;URLImageLocation&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;
&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;In HTML code for clickable image you need to replace:
&lt;ul&gt;&lt;li&gt;URLToLinkedWebPage - with URL to web page you want to be opened when user click on image&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;URLImageLocation - with location of image&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;&lt;b&gt;Example:&lt;/b&gt;&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;a href=&amp;quot;https://www.google.com&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;https://www.google.com/images/srpr/logo3w.png&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;Above HTML code display Google logo ("www.google.com/images/srpr/logo3w.png") and links to "www.google.com" when picture is clicked.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/l7wzCZCES3E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/4497738990802148746/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=4497738990802148746" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/4497738990802148746?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/4497738990802148746?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/l7wzCZCES3E/how-to-make-clickable-picture-in-html.html" title="How to make clickable picture in HTML" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-p6CG36Rj9xg/UPvWiPD5SKI/AAAAAAAAA-Y/vjOb89JHAng/s72-c/ClickableImage.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/02/how-to-make-clickable-picture-in-html.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkUCQH86cSp7ImA9WhBQEE4.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-1675234215704540127</id><published>2013-01-29T13:15:00.000-08:00</published><updated>2013-03-11T13:37:41.119-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-03-11T13:37:41.119-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>Make clickable links and clickable images</title><content type="html">&lt;p&gt;How to create clickable links?&lt;/p&gt;
&lt;p&gt;Let's first explain what are clickable links.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Clickable link&lt;/b&gt; is a text which reference on some web place. So, when clickable link is clicked referenced page is opened. Common term for clickable link is hyperlink.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Example of clickable link:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/06/tips-for-html-link-code.html"&gt;Some tips for clickable link&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;When above clickable link is clicked user is redirected to "&lt;i&gt;HTML link code tips&lt;/i&gt;" page (http://interestingwebs.blogspot.com/2009/06/tips-for-html-link-code.html).&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Guide to make scrollable link on web page&lt;/b&gt;&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;a href=&amp;quot;&lt;/FONT&gt;Web address&lt;FONT COLOR="brown"&gt;&amp;quot;&amp;gt;&lt;/FONT&gt;Here type clickable text&lt;FONT COLOR="brown"&gt;&amp;lt;/a&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;ul&gt;We have:
&lt;br /&gt;&lt;br /&gt;
&lt;li&gt;the &amp;lt;a&amp;gt; that tag defines a clickable link, which is used to link from one page to another&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;href attribute specifies the web address of the page where link lead&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Code for above example of clickable link would be:&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;a href=&amp;quot;http://interestingwebs.blogspot.com/2009/06/tips-for-html-link-code.html&amp;quot;&amp;gt;Some tips for clickable link&amp;lt;/a&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;To better explain making of clickable links there is one more sample with hyperlink inside sentence.&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;&lt;b&gt;Example of clickable link in setnence:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;This &lt;a href="https://www.google.com/"&gt;link&lt;/a&gt; go to Google.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;HTML code for scrollable link inside sentence (above example):&lt;/b&gt;&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;This &amp;lt;a href=&amp;quot;https://www.google.com/&amp;quot;&amp;gt;link&amp;lt;/a&amp;gt; go to Google.&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;In this example word &lt;i&gt;link&lt;/i&gt; is a clickable link while other words in a sentence are not. The word &lt;i&gt;link&lt;/i&gt; is enclosed inside &amp;lt;a&amp;gt; and &amp;lt;/a&amp;gt; tag.&lt;/p&gt;

&lt;h3&gt;How to make clickable image in HTML&lt;/h3&gt;
&lt;p&gt;Clickable image would be an image which will open linked web page when visitor click on this image. It is easy to make such an clickable image.&lt;/p&gt;
&lt;p&gt;Sample:&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://interestingwebs.blogspot.com/2013/02/how-to-make-clickable-picture-in-html.html" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="57" width="339" src="http://3.bp.blogspot.com/-p6CG36Rj9xg/UPvWiPD5SKI/AAAAAAAAA-Y/vjOb89JHAng/s400/ClickableImage.jpg" alt="Clickable image sample" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;When this image is clicked it will lead you to How to make clickable image tutorial!&lt;/p&gt;


&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/XzHaSh5gs94" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/1675234215704540127/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=1675234215704540127" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1675234215704540127?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1675234215704540127?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/XzHaSh5gs94/make-clickable-links-and-clickable.html" title="Make clickable links and clickable images" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-p6CG36Rj9xg/UPvWiPD5SKI/AAAAAAAAA-Y/vjOb89JHAng/s72-c/ClickableImage.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/01/make-clickable-links-and-clickable.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUHRXY6eip7ImA9WhNbGUo.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-8874559481153637741</id><published>2013-01-23T13:40:00.000-08:00</published><updated>2013-01-23T13:40:34.812-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-23T13:40:34.812-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><title>Remove blogger navbar</title><content type="html">&lt;p&gt;How to remove blogger (blogspot) navbar?&lt;/p&gt;
&lt;p&gt;Main reason why people want to remove blogger navbar from their blogspot blogs is that navbar does not fit with their blog design.&lt;/p&gt;
&lt;p&gt;In this post you will find short tutorial how to remove blogger navbar.&lt;/p&gt;
&lt;p&gt;It is relatively easy to remove it!&lt;/p&gt;
&lt;p&gt;You just need to follow steps in this article!&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;What is blogger navbar&lt;/h4&gt;
&lt;p&gt;The Blogger Navbar appears by default at the top of every Blogger blog. Take a look at a below image to see how blogger nvabars looks like.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-CdRcqbQp8YI/UOyCc8POUyI/AAAAAAAAA9w/5ePSW964bQc/s1600/RemoveBloggerNavBar.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="26" width="400" src="http://4.bp.blogspot.com/-CdRcqbQp8YI/UOyCc8POUyI/AAAAAAAAA9w/5ePSW964bQc/s400/RemoveBloggerNavBar.jpg" alt="Blogspot NavBar" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;Steps for removing the Blogger Navigation bar&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;in blogger Dashboard click Template&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;under "Live on Blog" click on button Edit HTML&lt;/li&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-JV8s0JIp0bo/UO3QBQCYIbI/AAAAAAAAA-E/baPWgW_BZKE/s1600/TemplateEditHTMLSm.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="196" width="400" src="http://1.bp.blogspot.com/-JV8s0JIp0bo/UO3QBQCYIbI/AAAAAAAAA-E/baPWgW_BZKE/s1600/TemplateEditHTMLSm.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;li&gt;inside "&lt;b&gt;Template › Edit HTML&lt;/b&gt;" find:  &lt;/li&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;
&lt;/SPAN&gt;&lt;/font&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;li&gt;replace this code with:&lt;/li&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;#navbar-iframe,#navbar { display: none !important; }
]]&gt;&lt;/b:skin&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;li&gt;after replacing code you should save template and your blog will be without navbar. And be very careful when edit HTML layout of your blogger blog.&lt;/li&gt;
&lt;/ul&gt;
&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/kzdjVrQCUlA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/8874559481153637741/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=8874559481153637741" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8874559481153637741?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8874559481153637741?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/kzdjVrQCUlA/remove-blogger-navbar.html" title="Remove blogger navbar" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-CdRcqbQp8YI/UOyCc8POUyI/AAAAAAAAA9w/5ePSW964bQc/s72-c/RemoveBloggerNavBar.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/01/remove-blogger-navbar.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YGRHc8fCp7ImA9WhNbE0s.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-8411688291461318873</id><published>2013-01-16T12:45:00.000-08:00</published><updated>2013-01-16T12:45:25.974-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-16T12:45:25.974-08:00</app:edited><title>How often Google crawl</title><content type="html">&lt;p&gt;You make a new web page and ask yourself when Googe will crawl my new web page (or new blog post)?&lt;/p&gt;
&lt;p&gt;Let's try to understand how Google crawl the web.&lt;/p&gt;
&lt;h4&gt;Google spiders&lt;/h4&gt;
&lt;p&gt;Google use spiders to crawl the web.&lt;/p&gt;
&lt;p&gt;Spiders (also called GoogleBots) are software robots which discovers new and updated web pages and add those pages to the Google index.&lt;/p&gt;
&lt;h4&gt;Google crawling&lt;/h4&gt;
&lt;p&gt;When Googlebot (or a Google spider) visit one web site it detects all links on each page of this web site and adds them to its list of pages to crawl.&lt;/p&gt;

&lt;p&gt;So Googlebot crawl from one page to another and follow their links. This is how Google crawl almost all pages on the internet. &lt;/p&gt;
&lt;p&gt;When Google find some web site it will come back to crawl this site again and reindex it.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-jymBSpF6fOs/UOiVv3CDVvI/AAAAAAAAA9c/aU3-hiAj6YE/s1600/GoogleSpiderCrawlWebPage.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="458" width="300" src="http://1.bp.blogspot.com/-jymBSpF6fOs/UOiVv3CDVvI/AAAAAAAAA9c/aU3-hiAj6YE/s1600/GoogleSpiderCrawlWebPage.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;

&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;How often Google crawl&lt;/h4&gt;
&lt;p&gt;How often Google will crawl some web site depends on many factors such us PageRank, links to a page...&lt;/p&gt;
&lt;p&gt;One of the factors is how often you change your site or add new pages. If changes are happening more frequently then Google will probably crawl your web site more frequently.&lt;/p&gt;
&lt;p&gt;If your site or blog is new and is not indexed by google find out how to &lt;a href="http://interestingwebs.blogspot.com/2009/10/force-google-reindex-of-site.html"&gt;force google to crawl your web site or blog&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/bOVV6Cj_d8A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/8411688291461318873/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=8411688291461318873" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8411688291461318873?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8411688291461318873?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/bOVV6Cj_d8A/how-often-google-crawl.html" title="How often Google crawl" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-jymBSpF6fOs/UOiVv3CDVvI/AAAAAAAAA9c/aU3-hiAj6YE/s72-c/GoogleSpiderCrawlWebPage.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/01/how-often-google-crawl.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUCSX8yeSp7ImA9WhNbEUQ.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-4651518057302186135</id><published>2013-01-08T13:47:00.001-08:00</published><updated>2013-01-14T11:54:28.191-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-14T11:54:28.191-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><title>Blogger tips for beginners</title><content type="html">&lt;p&gt;Here you will find a few links to blogger tips for beginners. Those are tips that every blogger should know.&lt;/p&gt;
&lt;p&gt;Tips are primarily for blogspot blog. Learn few basic techniques which will help you to blog better.&lt;/p&gt;
&lt;p&gt;Learn how to make and arrange categories in blogger, how to have recent posts in your side bar, expandable summaries, display HTML code in blogger post...&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;&lt;a href="http://interestingwebs.blogspot.com/2008/11/adding-categories-to-blogspot-blogger.html"&gt;Arrange your posts by categories in blogger&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;Add categories to the blogger and give your visitors opportunity to view your posts sorted by categories. Accomplish this in a few simple steps.&lt;/p&gt;
&lt;a href="http://2.bp.blogspot.com/_C4hJ8tIKp9c/STLKskhXXdI/AAAAAAAAAAc/yYQuNdfueR8/s1600-h/Categories.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5274500980670946770" style="width: 103px; height: 90px;" alt="Posts sorted by categories in blogger" src="http://2.bp.blogspot.com/_C4hJ8tIKp9c/STLKskhXXdI/AAAAAAAAAAc/yYQuNdfueR8/s320/Categories.JPG" border="0" /&gt;&lt;/a&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/07/recent-posts-blogger-widget.html"&gt;List recent posts in blogspot&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;You can easily display links to last (recent) five posts on your blog. Or maybee last ten posts.&lt;br /&gt;
Don't know how? Read this post, it is easy!&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-bF6DaMrbMbc/UOSERJ5CvHI/AAAAAAAAA8g/aRi_A5WZj3I/s1600/RecentPostsBlog.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="140" width="243" src="http://1.bp.blogspot.com/-bF6DaMrbMbc/UOSERJ5CvHI/AAAAAAAAA8g/aRi_A5WZj3I/s1600/RecentPostsBlog.jpg" alt="Learn how to display recent posts on your blogspot blog" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;&lt;a href="http://interestingwebs.blogspot.com/2010/01/expandable-post-summaries-on-blogger.html"&gt;Expandable post summaries on main blog page&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;If you want to have post summaries on main blog page which will expand on click on "read more". Read this article to learn how to accomplish it.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-g70tsAUAA8g/UOSH9pa9h-I/AAAAAAAAA84/kbj3vDxR2Uo/s1600/ReadMoreBloggerSm.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="273" width="288" src="http://2.bp.blogspot.com/-g70tsAUAA8g/UOSH9pa9h-I/AAAAAAAAA84/kbj3vDxR2Uo/s400/ReadMoreBloggerSm.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;&lt;a href="http://interestingwebs.blogspot.com/2008/12/easy-way-to-put-code-snippets-in-blog.html"&gt;Display HTML code in blogger post&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;Want to write blogger post about HTML code, but HTML code is not properly displayed in your blog post.&lt;/p&gt;
&lt;p&gt;For example this text will not be displayed correctly:
&lt;br/&gt;
&lt;pre&gt;
&amp;lt;h3&amp;gt;I want &amp;lt;h3&amp;gt; tags not heading format&amp;lt;/h3&amp;gt;
&lt;/pre&gt;
&lt;/p&gt;
&lt;p&gt;Follow the link and you will find guide how to display HTML code in your blog posts!&lt;/p&gt;
&lt;h4&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/02/create-your-own-site-search-using.html"&gt;Make google search for your blog&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;Add search capability on your blog with AdSense for Search. Allow your visitors to search content of your site in a Google like manner and try to earn some money.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-bioS8G8k10g/UOcrHRqpSJI/AAAAAAAAA9I/hopLI6shhAo/s1600/SearchYourBlog.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="70" width="250" src="http://4.bp.blogspot.com/-bioS8G8k10g/UOcrHRqpSJI/AAAAAAAAA9I/hopLI6shhAo/s400/SearchYourBlog.jpg" alt="Add Google search box in your blog which search your blog only" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;&lt;a href="
http://interestingwebs.blogspot.com/2009/01/jscript-in-blogger-post.html
"&gt;How to add java script in your blogger post&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;You need to add some cool javascript functionality inside blogspot post but do not know how? Here is a short tutorial how to do this.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/07/increase-blogger-traffic-change-title.html"&gt;Increase visits with title change&lt;/a&gt;&lt;/b&gt;&lt;/h4&gt;
&lt;p&gt;Short guide to change title structure in blogger which have significant impact of SEO performance.&lt;/p&gt;
&lt;p&gt;The default title structure is : &lt;b&gt;[Blog title]: [Post title]&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The structure : &lt;b&gt;[Post title]: [Blog title]&lt;/b&gt; could improve your traffic performance. &lt;/p&gt;

&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/8cs5x5zcaVU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/4651518057302186135/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=4651518057302186135" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/4651518057302186135?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/4651518057302186135?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/8cs5x5zcaVU/blogger-tips-for-beginners.html" title="Blogger tips for beginners" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_C4hJ8tIKp9c/STLKskhXXdI/AAAAAAAAAAc/yYQuNdfueR8/s72-c/Categories.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/01/blogger-tips-for-beginners.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0IGQn47eSp7ImA9WhNUEUs.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-5242410192353843069</id><published>2013-01-02T13:18:00.000-08:00</published><updated>2013-01-02T13:18:43.001-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-02T13:18:43.001-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><title>Add meta description on blogger post</title><content type="html">&lt;p&gt;&lt;b&gt;How to add unique meta description tag to each post post in blogspot (blogger) blog?&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;If you searching answer on that question this article is right place to find solution. It give simple easy to implement solution.&lt;/p&gt;
&lt;p&gt;This article is divided on two parts:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;what is purpose of meta description tags&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;how to implement meta description tags to every post in blogger&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h4&gt;WHY TO USE META DESCRIPTION TAGS?&lt;/h4&gt;
&lt;p&gt;&lt;b&gt;What is Meta Description Tags?&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Meta Description Tags are HTML elements used to provide description about a HTML page.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Why Meta Description Tags are important?&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;It is important because Meta Description Tag content might be used in Search Engine Result Page (SERP) for snippets. So if user find snippet text usable there is better chance he will open your page.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Example of SERP code snippet&lt;/b&gt;&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-1YtlOD0XzUY/UOK_85cdlWI/AAAAAAAAA7Q/2cQVxybm09M/s1600/SERPCodeSnippet.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="112" width="400" src="http://1.bp.blogspot.com/-1YtlOD0XzUY/UOK_85cdlWI/AAAAAAAAA7Q/2cQVxybm09M/s1600/SERPCodeSnippet.jpg" alt="Google SERP code snippet sample" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;We get above code snippet and here is a content of Meta Description tag!&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;meta content=&amp;#39;This blog have blog tutorial, Javascript and HTML tips (including jQuery).&amp;#39;&lt;br /&gt; name=&amp;#39;description&amp;#39;/&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;BR /&gt;
&lt;h4&gt;ADD DIFFERENT META DESCRIPTION TAG TO EVERY POST IN YOUR BLOGGER BLOG&lt;/h4&gt;
&lt;p&gt;Now blogger make it easy to add meta descriptions for each post throug blogspot interface.&lt;/p&gt; 
&lt;p&gt;Recently it was much harder to accomplish it, you must make a change inside &lt;i&gt;HTML template edit&lt;/i&gt; for each post and it was very impractical.&lt;/p&gt;
&lt;p&gt;Now it is enough to follow this steps:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Inside blogger dashboard click &lt;b&gt;Settings &gt; Search Settings&lt;/b&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-X16xvyc0unc/UOL0Xz0sBAI/AAAAAAAAA7k/_exQ-OpKJ0I/s1600/BloggerSettings.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="150" width="100" src="http://4.bp.blogspot.com/-X16xvyc0unc/UOL0Xz0sBAI/AAAAAAAAA7k/_exQ-OpKJ0I/s400/BloggerSettings.jpg" alt="Bloggers interface Setting - Search preferences" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Under Meta tags switch "&lt;i&gt;Enable search description&lt;/i&gt;" (to Yes) and type text you want to be meta description for your blog. Of course don't forget to Save changes.
&lt;br /&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-5VTzYJrnygU/UOL3Qj20nrI/AAAAAAAAA74/nWuH31feL2Y/s1600/BloggerMetaTagsDescription.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="146" width="400" src="http://3.bp.blogspot.com/-5VTzYJrnygU/UOL3Qj20nrI/AAAAAAAAA74/nWuH31feL2Y/s1600/BloggerMetaTagsDescription.jpg" alt="Blogger meta tags description in blogspot interface" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Last step is to inside "&lt;i&gt;Edit post interface&lt;/i&gt;" find &lt;b&gt;Post settings --&gt; Search Description&lt;/b&gt; and type description you want to appear for meta description tag in current post.
&lt;br /&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-oGwQJWFrzCo/UOL5Yodr47I/AAAAAAAAA8M/LAsgsRZP3mg/s1600/PostMetaDescriptionTag.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="220" width="240" src="http://2.bp.blogspot.com/-oGwQJWFrzCo/UOL5Yodr47I/AAAAAAAAA8M/LAsgsRZP3mg/s400/PostMetaDescriptionTag.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/2VbYGhY_nAE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/5242410192353843069/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=5242410192353843069" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/5242410192353843069?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/5242410192353843069?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/2VbYGhY_nAE/add-meta-description-on-blogger-post.html" title="Add meta description on blogger post" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-1YtlOD0XzUY/UOK_85cdlWI/AAAAAAAAA7Q/2cQVxybm09M/s72-c/SERPCodeSnippet.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2013/01/add-meta-description-on-blogger-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QAQXo4eip7ImA9WhNUEE4.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-7288603852216483938</id><published>2012-12-17T11:30:00.000-08:00</published><updated>2013-01-01T02:15:40.432-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-01T02:15:40.432-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="Guest Post" /><title>Submit guest post guidelines</title><content type="html">&lt;p&gt;Here are some basic guidelines for submitting guest post on this blog.&lt;/p&gt;
&lt;p&gt;First let's list few reasons why you should guest post:
&lt;ul&gt;&lt;li&gt;by posting on other’s blog, you are gaining exposure and publicity&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;get more backlinks&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;immediately increase traffic if you guest post on popular blogs&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;h3&gt;Rules for guest posting on this blog&lt;/h3&gt;
&lt;h4&gt;Choose a topic&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;suggest a few titles with two or three keywords - e.g. Title: "How to increase web traffic" Keywords: "increase traffic"
&lt;br /&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;I will decide if I am satisfied with suggested titles, topic and keywords, optionally you can make &lt;a href="http://interestingwebs.blogspot.com/2011/11/how-to-keyword-research.html"&gt;keyword research&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;you can send me your suggestion on this &lt;a href="mailto:blogsrec@gmail.com?subject=Guest post"&gt;mail&lt;/a&gt; with a subject "Guest post"&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;li&gt;Choose  a topic which is related with this blog. Topics could be:
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;HTML, CSS...&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;javascript, jQuery&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;tips for blogspot blog&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;tips for general blogging&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;how to increase web traffic, monetization and SEO&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;guest post should have some useful information, answer on some question or give some step by step instructions how to do something, for example: &lt;a href=""&gt;Adding categories to blogspot (blogger)&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;b&gt;Post rules&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;article must be original, it &lt;b&gt;shouldn't be published anywhere on web&lt;/b&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;use paragraph tags (&amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;)&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;paragraphs should not be too long, so text should be easy to read&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;you shuold pay attention on &lt;a href="http://interestingwebs.blogspot.com/2011/12/web-page-optimization-techniques.html"&gt;keywords in text&lt;/a&gt;:
&lt;br /&gt; &lt;br /&gt; 
&lt;ul&gt;&lt;li&gt;Keyword position on web page&lt;/li&gt;
&lt;br /&gt; 
&lt;li&gt;Keyword density&lt;/li&gt;
&lt;br /&gt; 
&lt;li&gt;Keyword proximity&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;using unordered list is a good idea, example:
&lt;br /&gt;
&amp;lt;ul&amp;gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;first line&amp;lt;/li&amp;gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;second line&amp;lt;/li&amp;gt;
&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;b&gt;Writing code inside guest post&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;if you want to have some code in guest post put it inside &amp;lt;pre&amp;gt; tags for example: &amp;lt;pre&amp;gt;Some code&amp;lt;/pre&amp;gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;don't forget to replace code characters and symbols into character entities, find more in &lt;a href="http://interestingwebs.blogspot.com/2008/12/easy-way-to-put-code-snippets-in-blog.html"&gt;How to display HTML code in blog or web&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;b&gt;Images&lt;/b&gt;
&lt;p&gt;If you have some screenshots you could send me images in mail (not more then 3 per post) and type image file name inside text where image should be. .jpg format is recommended.&lt;/p&gt;
&lt;br /&gt;
&lt;b&gt;Example of well formated text&lt;/b&gt;
&lt;p&gt;At the end here is HTML for this post. When you send me guest post it should be formated similar to this example:&lt;/p&gt;
&lt;pre&gt;&amp;lt;p&amp;gt;Here are some basic guidelines for submitting guest post on this blog.&amp;lt;/p&amp;gt;
&amp;lt;p&amp;gt;First let&amp;#39;s list few reasons why you should guest post:
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;by posting on other%u2019s blog, you are gaining exposure and publicity&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;get more backlinks&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;immediately increase traffic if you guest post on popular blogs&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;
&amp;lt;h3&amp;gt;Rules for guest posting on this blog&amp;lt;/h3&amp;gt;
&amp;lt;h4&amp;gt;Choose a topic&amp;lt;/h4&amp;gt;
&amp;lt;ul&amp;gt;
&amp;lt;li&amp;gt;suggest a few titles with two or three keywords - e.g. Title: &amp;quot;How to increse web traffic&amp;quot; Keywords: &amp;quot;increase traffic&amp;quot;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;I will decide if I am satisfied with suggested titles, topic and keywords, optionally you can make &amp;lt;a href=&amp;quot;http://interestingwebs.blogspot.com/2011/11/how-to-keyword-research.html&amp;quot;&amp;gt;keyword research&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;you can send me your suggestion on this &amp;lt;a href=&amp;quot;mailto:blogsrec@gmail.com?subject=Guest post&amp;quot;&amp;gt;mail&amp;lt;/a&amp;gt; with a subject &amp;quot;Guest post&amp;quot;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;Choose  a topic which is related with this blog. Topics could be:
&amp;lt;ul&amp;gt;&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;HTML, CSS...&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;javascript, jQuery&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;tips for blogspot blog&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;tips for general blogging&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;how to increase web traffic, monetization and SEO&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;guest post should have some useful information, answer on some question or give some step by step instructions how to do something, for example: &amp;lt;a href=&amp;quot;&amp;quot;&amp;gt;Adding categories to blogspot (blogger)&amp;lt;/a&amp;gt; &amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;b&amp;gt;Post rules&amp;lt;/b&amp;gt;
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;article must be original, it &amp;lt;b&amp;gt;shouldn&amp;#39;t be published anywhere on web&amp;lt;/b&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;use paragraph tags (&amp;amp;lt;p&amp;amp;gt;&amp;amp;lt;/p&amp;amp;gt;)&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;paragraphs should not be too long, so text should be easy to read&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;you shuold pay attention on &amp;lt;a href=&amp;quot;http://interestingwebs.blogspot.com/2011/12/web-page-optimization-techniques.html&amp;quot;&amp;gt;keywords in text&amp;lt;/a&amp;gt;:
&amp;lt;br /&amp;gt; &amp;lt;br /&amp;gt; 
&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Keyword position on web page&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt; 
&amp;lt;li&amp;gt;Keyword density&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt; 
&amp;lt;li&amp;gt;Keyword proximity&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;using unordered list is a good idea, example:
&amp;lt;br /&amp;gt;
&amp;amp;lt;ul&amp;amp;gt;
&amp;lt;br /&amp;gt;
&amp;amp;lt;li&amp;amp;gt;first line&amp;amp;lt;/li&amp;amp;gt;
&amp;lt;br /&amp;gt;
&amp;amp;lt;li&amp;amp;gt;second line&amp;amp;lt;/li&amp;amp;gt;
&amp;lt;br /&amp;gt;
&amp;amp;lt;/ul&amp;amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;b&amp;gt;Writing code inside guest post&amp;lt;/b&amp;gt;
&amp;lt;ul&amp;gt;
&amp;lt;li&amp;gt;if you want to have some code in guest post put it inside &amp;amp;lt;pre&amp;amp;gt; tags for example: &amp;amp;lt;pre&amp;amp;gt;Some code&amp;amp;lt;/pre&amp;amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;li&amp;gt;don&amp;#39;t forget to replace code characters and symbols into character entities, find more in &amp;lt;a href=&amp;quot;http://interestingwebs.blogspot.com/2008/12/easy-way-to-put-code-snippets-in-blog.html&amp;quot;&amp;gt;How to display HTML code in blog or web&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;&lt;/pre&gt;




&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/UQo7XzhuoJQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/7288603852216483938/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=7288603852216483938" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/7288603852216483938?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/7288603852216483938?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/UQo7XzhuoJQ/submit-guest-post-guidelines.html" title="Submit guest post guidelines" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/12/submit-guest-post-guidelines.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04NSXs9cCp7ImA9WhNbF0Q.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-1428500672614266445</id><published>2012-12-06T12:33:00.000-08:00</published><updated>2013-01-21T11:19:58.568-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-01-21T11:19:58.568-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>3D snowflakes effect on HTML page or blog</title><content type="html">&lt;p&gt;Here is a sample of 3D snow effect on HTML page. This sample work with a help of HTML5 and three.js library.&lt;/p&gt;
&lt;p&gt;Snowflakes are moving in 3D manner and if you move mouse on left snowflakes will rotate to left. Same thing function for other directions. Try it!.&lt;/p&gt;
&lt;p&gt;This 3D snow effect work on new version of browsers which support HTML5 functionality.&lt;/p&gt;
&lt;p&gt;It seem this effect does not work on Internet Explorer browser but it works well on Chrome and Firefox.&lt;/p&gt;

&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;style type="text/css"&gt;
   .snow {
    background-color: #000099;
    margin: 0px;
    overflow: hidden;
    width: 650px;
    height: 350px;
   }
 
&lt;/style&gt;
 
&lt;div id="Div1" class="snow"&gt;&lt;/div&gt;

 &lt;script type="text/javascript" src="https://dl.dropbox.com/u/59215462/SnowFall/3D/ThreeCanvas.js"&gt;&lt;/script&gt;
 &lt;script type="text/javascript" src="https://dl.dropbox.com/u/59215462/SnowFall/3D/Snow.js"&gt;&lt;/script&gt;


&lt;script src="https://dl.dropbox.com/u/59215462/SnowFall/3D/3DSnowBox.js" type="text/javascript"&gt;&lt;/script&gt;

 
  &lt;script&gt;
      init('Div1');
  &lt;/script&gt;
&lt;br /&gt;
&lt;p&gt;Here is 3D snowfall code:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;
   .snow {
    background-color: #000099;
    margin: 0px;
    overflow: hidden;
    width: 650px;
    height: 350px;
   }
&amp;lt;/style&amp;gt;
 
&amp;lt;div id=&amp;quot;Div1&amp;quot; class=&amp;quot;snow&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;

 &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;http://seb.ly/demos/JSSnow/js/ThreeCanvas.js&amp;quot;&amp;gt;
&amp;lt;/script&amp;gt;
 &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;https://dl.dropbox.com/u/59215462/SnowFall/3D/Snow.js&amp;quot;&amp;gt;
&amp;lt;/script&amp;gt;
&amp;lt;script src=&amp;quot;https://dl.dropbox.com/u/59215462/SnowFall/3D/3DSnowBox.js&amp;quot;
 type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;script&amp;gt;
      init(&amp;#39;Div1&amp;#39;);
  &amp;lt;/script&amp;gt;
&lt;/pre&gt;

&lt;br /&gt;
&lt;h4&gt;Let's explain 3D snowfalling code&lt;/h4&gt;
&lt;ul&gt;&lt;li&gt;Line 1 to 9 is a style for div HTML element in which snowfall effect is putted, this style is used for .snow class, you can change value in style to adjust width, height or color to your needs&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Line 11 is div element, its class in snow so style from beginning of code is used on this div&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Line 13 to 14 is a reference to three.js library, it is 3D library&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Line 15 to 16 is a reference to Snow.js library. This library make this cool 3D snow effect&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Line 17 to 18 is a reference to 3DSnowBox.js. This file is mine and it make call to Snow.js easier&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;line 20 to 22 is a javascript call to a Init method with id parameter of div element in which 3D snow should occur&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;p&gt;If you find this article useful please make a link to this article on your page or blog!&lt;/p&gt;


&lt;script src="https://dl.dropbox.com/u/59215462/SH/shCore.js" type="text/javascript"&gt;&lt;/script&gt;

 &lt;script src="https://dl.dropbox.com/u/59215462/SH/shBrushJScript.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;link href="https://dl.dropbox.com/u/59215462/SH/shCore.css" rel="stylesheet" type="text/css" /&gt;

&lt;link href="https://dl.dropbox.com/u/59215462/SH/shThemeDefault.css" rel="stylesheet" type="text/css" /&gt;
&lt;script type="text/javascript"&gt;
    SyntaxHighlighter.defaults['gutter'] = true;
    SyntaxHighlighter.all();
&lt;/script&gt;
&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/NTojX31BWXg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/1428500672614266445/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=1428500672614266445" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1428500672614266445?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1428500672614266445?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/NTojX31BWXg/3d-snowflakes-effect-on-html-page-or.html" title="3D snowflakes effect on HTML page or blog" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>4</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/12/3d-snowflakes-effect-on-html-page-or.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUGQ3s8cCp7ImA9WhNQGUs.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-7946929066690021338</id><published>2012-11-26T12:37:00.000-08:00</published><updated>2012-11-26T12:37:02.578-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-11-26T12:37:02.578-08:00</app:edited><title>Does GM food safe?</title><content type="html">&lt;p&gt;Does GM food is safe for consuming is the question that many consumers ask.&lt;/p&gt;
&lt;p&gt;
We will start with a few facts about GM food and finish with a few studies with a  negative opinion about GMO.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;
&lt;u&gt;Facts about GM food (source : &lt;a href="http://www.who.int/foodsafety/publications/biotech/20questions/en/"&gt;WTO&lt;/a&gt;)&lt;/u&gt;&lt;/h4&gt;
&lt;b&gt;What is GMO?&lt;/b&gt;&lt;br /&gt;
&lt;p&gt;
Genetically modified organisms (GMOs) can be defined as organisms in which the genetic material (DNA) has been altered in a way that does not occur naturally.&lt;/p&gt;
&lt;br /&gt;
&lt;b&gt;What is genetic engineering?&lt;/b&gt;&lt;br /&gt;
&lt;p&gt;
It is a technology which allows selected individual genes to be transferred from one organism into another, also between non-related species.&lt;/p&gt;
&lt;p&gt;
For example genetically modified cabbages which produce scorpion poison that kills caterpillars when they bite leaves. The goal is to limit pesticide use.&lt;/p&gt;
&lt;br /&gt;
&lt;b&gt;How GM foods safety should be assessed&lt;/b&gt;&lt;br /&gt;
&lt;p&gt;
Different GM organisms include different genes inserted in different ways. This means that individual GM foods and their safety should be assessed on a case-by-case basis and that it is not possible to make general statements on the safety of all GM foods.
&lt;/p&gt;
&lt;p&gt;
Claimed by WHO, GM foods currently available on the international market have passed risk assessments and are not likely to present risks for human health. In addition, no effects on human health have been shown as a result of the consumption of such foods by the general population in the countries where they have been approved.&lt;/p&gt;
&lt;br /&gt;
&lt;b&gt;Which countries have most GM crops in 2011 (source: &lt;a href="http://www.guardian.co.uk/environment/graphic/2012/feb/09/gm-crops-world-2011-map" rel="nofollow"&gt;Guardian&lt;/a&gt;)&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-3BBcfexzauc/UK0_VHk7gJI/AAAAAAAAA6M/qJLLHV_yf6s/s1600/world_GM_crops.gif" imageanchor="1" rel="nofollow" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img alt="Production of GM food in the world" border="0" height="284" src="http://3.bp.blogspot.com/-3BBcfexzauc/UK0_VHk7gJI/AAAAAAAAA6M/qJLLHV_yf6s/s400/world_GM_crops.gif" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;
Negative safe studies about GMO&lt;/h4&gt;
&lt;b&gt;Árpád Pusztai study&lt;/b&gt;
&lt;br /&gt;
&lt;p&gt;
Árpád Pusztai is a world expert on plant lectins. In his study he fed rats with genetically modified potatoes. In 1998 Pusztai said in an interview that his group had observed damage to the intestines and immune systems of rats fed the genetically modified potatoes.&lt;/p&gt;
&lt;p&gt;
He also said "If I had the choice I would certainly not eat it", and that "I find it's very unfair to use our fellow citizens as guinea pigs".&lt;br /&gt;
After interview Pusztai's annual contract at Rowett was not renewed (some claims  on Tony Blair's request). This event is known as &lt;a href="http://en.wikipedia.org/wiki/Pusztai_affair" rel="nofollow"&gt;Pusztai affair&lt;/a&gt;.&lt;/p&gt;
&lt;br /&gt;
He knew the truth about GMO safety year's ago:
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;
&lt;object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://2.gvt0.com/vi/Onw72ShqbP4/0.jpg" height="266" width="320"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Onw72ShqbP4&amp;fs=1&amp;source=uds" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed width="420" height="266"  src="http://www.youtube.com/v/Onw72ShqbP4&amp;fs=1&amp;source=uds" type="application/x-shockwave-flash" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Dr. Irina Ermakova study 2005 (source: &lt;a href="http://www.gmo-compass.org/eng/news/stories/195.study_gm_soy_dangerous_newborns.html" rel="nofollow"&gt;Gmo-compass&lt;/a&gt;)&lt;/b&gt;
&lt;p&gt;Dr. Irina Ermakova of the Russian Academy of Sciences recently released a study reporting higher mortality rates and lower body weight among young rats whose mothers were fed a diet of herbicide resistant, genetically modified soybeans.&lt;/p&gt;
&lt;p&gt;The scientific team found that the mortality rate of the offspring of rats fed genetically modified soy flour was six times higher than that of rats raised with feed from conventional soy.&lt;/p&gt;
&lt;p&gt;These findings were never published in a peer reviewed journal.&lt;/p&gt;
&lt;p&gt;According to the ACNFP, Dr. Ermakova's findings are inconsistent with a recognized, published research report. At South Dakota State University in the United States, Denise Brake and Dr. Donald Evenson conducted similar feeding studies on mice with GM soybean and published their results in a peer-reviewed scientific journal in 2004. Brake and Evenson’s studies found no negative effects.&lt;/p&gt;
&lt;br /&gt;
&lt;b&gt;French study 2012 (source: &lt;a href="http://www.dailymail.co.uk/sciencetech/article-2205509/Cancer-row-GM-foods-French-study-claims-did-THIS-rats--cause-organ-damage-early-death-humans.html" rel="nofollow"&gt;Dailymail&lt;/a&gt;)&lt;/b&gt;
&lt;br /&gt;
&lt;p&gt;
Rats fed a lifelong diet of one of the bestselling genetically modified corn suffered tumours and multiple organ damage.&lt;/p&gt;
&lt;p&gt;
It is the first to look at the impact of eating a GM diet over a lifetime in rats, which is two years. Until this study, safety assessments of GM crops have been based on rat feeding trials lasting 90 days.
&lt;/p&gt;
&lt;br /&gt;
Shocking images of tumours in mice caused by exclusively eating GM corn:
&lt;img alt="Shocking images of tumours in mice caused by exclusively eating GM corn" height="184" src="http://i.dailymail.co.uk/i/pix/2012/09/19/article-2205509-151799EE000005DC-217_634x371.jpg" width="350" /&gt;

&lt;br /&gt;
&lt;p&gt;
Michael Antoniou, a molecular biologist at King's College London, who helped draft the paper, told reporters about need to test all GM crops in two-year lifelong studies.
He said:
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;
I feel this data is strong enough to withdraw the marketing approval for this variety of GM maize temporarily, until this study is followed up and repeated with larger number of animals to get the full statistical power that we want&lt;/blockquote&gt;
&lt;/p&gt;
&lt;br /&gt;
Seralini, the main team research member believes his latest lifetime rat tests give a more realistic and authoritative view of risks than the 90-day feeding trials that form the basis of GM crop approvals, since three months is only the equivalent of early adulthood in rats.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;
&lt;object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://0.gvt0.com/vi/Njd0RugGjAg/0.jpg"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Njd0RugGjAg&amp;fs=1&amp;source=uds" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed width="420" height="266"  src="http://www.youtube.com/v/Njd0RugGjAg&amp;fs=1&amp;source=uds" type="application/x-shockwave-flash" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;
&lt;p&gt;Recently six french science academies &lt;a href="http://dotearth.blogs.nytimes.com/2012/10/19/six-french-science-academies-dismiss-study-finding-gm-corn-harmed-rats/" rel="nofollow"&gt;dismiss this study&lt;/a&gt;.&lt;/p&gt;

&lt;br /&gt;
&lt;b&gt;At the end&lt;/b&gt;
&lt;p&gt;We can conclude that there are studies which results indicates the GMO technology could be extremely dangerous. On the other side there are even more studies which claims that GMO is safe.&lt;/p&gt;
&lt;p&gt;All three studies mentioned in this article were challenged by research community. Problem is that multinational monopolistic industry fund research centers and studies. So you may ask yourself if you would be a scientist would you make such a study which consequence will be loss of your cash flow.&lt;/p&gt;
&lt;p&gt;Dr. Mae-Wan Ho citation:&lt;/p&gt;
&lt;p&gt;&lt;blockquote&gt;Genetic engineering biotechnology is inherently hazardous. It could lead to disasters far worse than those caused by accidents to nuclear installations...
&lt;br /&gt;&lt;br /&gt;
I should, right away, dispel the myth that genetic engineering is just like conventional breeding techniques. It is not. Genetic engineering bypasses conventional breeding by using the artificially constructed vectors to multiply copies of genes, and in many cases, to carry and smuggle genes into cells.
&lt;/blockquote&gt;&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/yfdSEj67fhc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/7946929066690021338/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=7946929066690021338" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/7946929066690021338?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/7946929066690021338?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/yfdSEj67fhc/does-gm-food-safe.html" title="Does GM food safe?" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-3BBcfexzauc/UK0_VHk7gJI/AAAAAAAAA6M/qJLLHV_yf6s/s72-c/world_GM_crops.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/11/does-gm-food-safe.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YMRH46eyp7ImA9WhNWFE4.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-5750913003761902731</id><published>2012-11-12T12:57:00.000-08:00</published><updated>2012-12-13T12:39:45.013-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-12-13T12:39:45.013-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery" /><category scheme="http://www.blogger.com/atom/ns#" term="effects" /><title>Christmas effects on HTML page</title><content type="html">&lt;p&gt;On this page you can find links to christmas javascript effects which can be applied on your web page.&lt;/p&gt;
&lt;p&gt;We will start with two snow effect, then continue with moving santa.&lt;/p&gt;
&lt;p&gt;Look below for links to christmas effect tutorials!&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2008/12/how-to-add-falling-snow-effect-to-blog.html"&gt;Christmas snowing javascript effect&lt;/a&gt;&lt;/b&gt; - find how to add snowing effect on your web page. Following this link more advanced users can also find how to make snow fall with a custom snow flakes.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-SbyIybHjxYI/TvDqcYCPNNI/AAAAAAAAAyE/ZcB_9_oEn18/s1600/SnowFallSm.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="162" width="400" src="http://3.bp.blogspot.com/-SbyIybHjxYI/TvDqcYCPNNI/AAAAAAAAAyE/ZcB_9_oEn18/s400/SnowFallSm.jpg" rel="nofollow" alt="Snow fall effect sample from my blog" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2011/01/walking-santa-claus-jscript-effect.html"&gt;Moving santa on your HTML page&lt;/a&gt;&lt;/b&gt; - how to get moving christmas Stana Claus on your HTML page with a help of javascript.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-H2AwfRkxv90/TvI6yidlb7I/AAAAAAAAAy0/RXAH2todH2w/s1600/AnimateEffectOnWebPage.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="160" width="289" src="http://4.bp.blogspot.com/-H2AwfRkxv90/TvI6yidlb7I/AAAAAAAAAy0/RXAH2todH2w/s320/AnimateEffectOnWebPage.jpg" rel="nofollow" alt="Animate - Moving image effect on web page" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/12/3d-snowflakes-effect-on-html-page-or.html"&gt;3D snow effect in HTML5&lt;/a&gt;&lt;/b&gt; - want a window looking on 3D falling snow on your HTML page? This impressive 3D effect you can find by following the link.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-044ZPopxWiw/UMo7XjcFxDI/AAAAAAAAA6o/5zFhGjQbt08/s1600/3DSnow.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="179" width="400" src="http://4.bp.blogspot.com/-044ZPopxWiw/UMo7XjcFxDI/AAAAAAAAA6o/5zFhGjQbt08/s400/3DSnow.jpg" alt="3D snow effect with HTML5 and javascript" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;

&lt;p&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/11/jquery-snow-falling-effect-on-your-blog.html"&gt;jQuery snow falling effect&lt;/a&gt;&lt;/b&gt; - if you like jQuery, linked article could teach you how to add snowing effect on you web site using jQuery.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-U9DGT97jU-8/UJwWHtCM7JI/AAAAAAAAA5s/SpdpBY3bjBo/s1600/Snowing.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="115" width="269" src="http://1.bp.blogspot.com/-U9DGT97jU-8/UJwWHtCM7JI/AAAAAAAAA5s/SpdpBY3bjBo/s320/Snowing.jpg" alt="jQuery snowing effect animation sample" /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/5uw2VRv7lPY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/5750913003761902731/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=5750913003761902731" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/5750913003761902731?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/5750913003761902731?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/5uw2VRv7lPY/christmas-effect-on-html-page.html" title="Christmas effects on HTML page" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-SbyIybHjxYI/TvDqcYCPNNI/AAAAAAAAAyE/ZcB_9_oEn18/s72-c/SnowFallSm.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/11/christmas-effect-on-html-page.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEGSXw_eCp7ImA9WhNRFE0.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-8843326693209801015</id><published>2012-11-08T12:05:00.000-08:00</published><updated>2012-11-08T12:30:28.240-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-11-08T12:30:28.240-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery" /><title>jQuery snow falling effect on your blog</title><content type="html">&lt;p&gt;How to get jQuery snowing effect animation on your blog or web site?&lt;/p&gt;
&lt;p&gt;Very easy, you just need to copy a few lines of HTML code plus a few lines of jQuery code and your web page will snowing, many snowflakes will fall.&lt;/p&gt;
&lt;p&gt;jQuery snow falling effect is visible on this page. If you look at page you will see falling snowflakes.&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;To get same (jQuery) snow effect you need to include this code on your page:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;script src=&amp;quot;http://code.jquery.com/jquery-1.8.2.min.js&amp;quot; 
type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src=&amp;quot;http://cloud.github.com/downloads/kopipejst/jqSnow/jquery.snow.js&amp;quot; 
type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;

&amp;lt;script&amp;gt;
 $(document).ready( function(){
         $.fn.snow();
 });
 &amp;lt;/script&amp;gt;
&lt;/pre&gt;

&lt;p&gt;So, to get jQuery snowing effect you just need to copy code above and paste it on your HTML page.&lt;/p&gt;
&lt;p&gt;First four lines of HTML code are links to jquery-1.8.2.min.js and to jquery.snow.js files. Lines 6 to 10 is jquery code which call snow method from jquery.snow.js file.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-U9DGT97jU-8/UJwWHtCM7JI/AAAAAAAAA5s/SpdpBY3bjBo/s1600/Snowing.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="115" width="269" src="http://1.bp.blogspot.com/-U9DGT97jU-8/UJwWHtCM7JI/AAAAAAAAA5s/SpdpBY3bjBo/s320/Snowing.jpg" alt="jQuery snowing effect animation sample" /&gt;&lt;/a&gt;&lt;/div&gt;

&lt;p&gt;You can download jquery.snow.js file from &lt;a href="http://workshop.rs/2012/01/jquery-snow-falling-plugin/"&gt;WORKSHOP
owned by Ivan Lazarevic&lt;/a&gt; (the author of snowing script code), then upload this file somewhere on internet and use it for your blog or web site.&lt;/p&gt;
&lt;p&gt;There is another &lt;a href="http://interestingwebs.blogspot.com/2008/12/how-to-add-falling-snow-effect-to-blog.html"&gt;snowing effect on my blog&lt;/a&gt; written in ordinary javascript.&lt;/p&gt;

&lt;script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="http://cloud.github.com/downloads/kopipejst/jqSnow/jquery.snow.js" type="text/javascript"&gt;&lt;/script&gt;

&lt;script&gt;
 $(document).ready( function(){
         $.fn.snow();
 });
 &lt;/script&gt;




&lt;script src="https://dl.dropbox.com/u/59215462/SH/shCore.js" type="text/javascript"&gt;&lt;/script&gt;

 &lt;script src="https://dl.dropbox.com/u/59215462/SH/shBrushJScript.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;link href="https://dl.dropbox.com/u/59215462/SH/shCore.css" rel="stylesheet" type="text/css" /&gt;

&lt;link href="https://dl.dropbox.com/u/59215462/SH/shThemeDefault.css" rel="stylesheet" type="text/css" /&gt;
&lt;script type="text/javascript"&gt;
    SyntaxHighlighter.defaults['gutter'] = true;
    SyntaxHighlighter.all();
&lt;/script&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/ImicuiELHP0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/8843326693209801015/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=8843326693209801015" title="9 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8843326693209801015?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8843326693209801015?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/ImicuiELHP0/jquery-snow-falling-effect-on-your-blog.html" title="jQuery snow falling effect on your blog" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-U9DGT97jU-8/UJwWHtCM7JI/AAAAAAAAA5s/SpdpBY3bjBo/s72-c/Snowing.jpg" height="72" width="72" /><thr:total>9</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/11/jquery-snow-falling-effect-on-your-blog.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEYCQXw8fyp7ImA9WhNREEg.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-1572590036101054836</id><published>2012-11-04T11:01:00.000-08:00</published><updated>2012-11-04T11:09:20.277-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-11-04T11:09:20.277-08:00</app:edited><title>Get advert on my blog</title><content type="html">&lt;p&gt;You can advertise your products on this blog. Check below where on blog you can place your adverts. Also check what types of adverts are available.&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h4&gt;Advertise on &lt;a href="http://interestingwebs.blogspot.com/2008/12/how-to-add-falling-snow-effect-to-blog.html"&gt;How to add a falling snow effect to blog&lt;/a&gt; page&lt;/h4&gt; 
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Type of advert:&lt;/b&gt; 150 X 100&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;Cost:&lt;/b&gt; 5$ from today until 2013-07-01&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;Why:&lt;/b&gt;
last year this page was visited more then 6200 times from November to February (mostly in November and December).
&lt;br /&gt;
This page is in the top of Google search results for keywords (try it yourself):
&lt;ul&gt;
&lt;li&gt;snow effect for blog&lt;/li&gt;
&lt;li&gt;snow animation for blogger&lt;/li&gt;
&lt;li&gt;falling snowing effect HTML&lt;/li&gt;
&lt;li&gt;snow effect for blogger&lt;/li&gt;
&lt;li&gt;website snow effect html&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;How:&lt;/b&gt; send 150 X 100 px image with a link to &lt;a href="mailto:blogsrec@gmail.com?subject=SNOWADVERT"&gt;my mail&lt;/a&gt; with a subject SNOWADVERT. Then, I will reply to your mail and give you instructions how to pay in 5$ using PayPal. After payment, advert will be placed on the page.&lt;/li&gt;
&lt;/ul&gt;

&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/TZ-dDz0to3o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/1572590036101054836/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=1572590036101054836" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1572590036101054836?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1572590036101054836?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/TZ-dDz0to3o/get-advert-on-my-blog.html" title="Get advert on my blog" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/11/get-advert-on-my-blog.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAEQ308fSp7ImA9WhNSF0w.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-2743138709177225589</id><published>2012-10-31T14:24:00.001-07:00</published><updated>2012-10-31T14:25:02.375-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-10-31T14:25:02.375-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>Center a HTML element</title><content type="html">&lt;p&gt;How to center div element? This is a question that ask many HTML beginners.&lt;/p&gt;
&lt;p&gt;And this is not only question about centering. Frequently people do not know how to center text or button inside div element or button , how to center image inside div element, how to center div block on the screen and many other variations... &lt;/p&gt;
&lt;p&gt;In this article we will try to give simple instructions with samples how to make some most common HTML centering.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Center a text inside div: &lt;/h4&gt;
&lt;br/&gt;
&lt;div align=center style="border: solid 1px #ccc;"&gt;This text is centered inside div&lt;/div&gt;
&lt;br/&gt;
&lt;p&gt;Code for centering text inside div&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;div align=center&amp;gt;This text is centered inside div&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;p&gt;So, to div element is added &lt;i&gt;align&lt;/i&gt; attribute with value &lt;i&gt;center&lt;/i&gt; and we get centered text inside div element.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Center HTML button element inside div element:&lt;/h4&gt;
&lt;br /&gt;
&lt;div align=center style="border: solid 1px #ccc;"&gt;&lt;input id="Button1" type="button" value="Centered button" /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;p&gt;Code for centering button element in div&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;div align=center&amp;gt;&amp;lt;input id=&amp;quot;Button1&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Centered button&amp;quot; /&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br/&gt;
&lt;p&gt;Button HTML element is centered inside div element similar like in previous example. Align is set to center.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Center an image inside div element&lt;/h4&gt;
&lt;div align=center style="border: solid 1px #ccc;"&gt; 
 &lt;img alt="" src="http://www.userinterfaceicons.com/80x80/redo.png" 
            style="height: 85px; width: 198px" id="image" /&gt;
            &lt;/div&gt;

&lt;br/&gt;
&lt;p&gt;Code for centering image in div element:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;div align=center&amp;gt; 
 &amp;lt;img alt=&amp;quot;&amp;quot; src=&amp;quot;http://www.userinterfaceicons.com/80x80/redo.png&amp;quot; 
            style=&amp;quot;height: 85px; width: 198px&amp;quot; id=&amp;quot;image&amp;quot; /&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;p&gt;Image is in div element which have &lt;i&gt;align&lt;/i&gt; attribute set to &lt;i&gt;center&lt;/i&gt;.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Center a div block on screen:&lt;/h4&gt;
&lt;div style="width: 280px; margin-right:auto; margin-left:auto; border: solid 1px #ccc;"  &gt;Div block is centered but text is on the left side&lt;/div&gt;
&lt;br /&gt;
&lt;p&gt;Code for centering div block on screen:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;div style=&amp;quot;width: 280px; margin-right:auto; margin-left:auto&amp;quot; &amp;gt;
Div block is centered but text is on the left side
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;p&gt;This div is center on the screen but text inside div is not. Div is centered on screen or in some other HTML element by setting margin-right and margin-left attributes to auto.&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Center a div block and text inside it&lt;/h4&gt;
&lt;div style="width: 280px; margin-right:auto; margin-left:auto;border: solid 1px #ccc;" align=center &gt;Div block is centered and text is &lt;br/&gt;
centered&lt;/div&gt;
&lt;br/&gt;
&lt;p&gt;Code for centered div element with centered text inside it:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;div style=&amp;quot;width: 280px; margin-right:auto; margin-left:auto;&amp;quot; align=center &amp;gt;
Div block is centered and text is centered
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;p&gt;This is like previous example. Only difference is that align attribute is set to center.&lt;/p&gt;



&lt;script src="https://dl.dropbox.com/u/59215462/SH/shCore.js" type="text/javascript"&gt;&lt;/script&gt;

 &lt;script src="https://dl.dropbox.com/u/59215462/SH/shBrushJScript.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;link href="https://dl.dropbox.com/u/59215462/SH/shCore.css" rel="stylesheet" type="text/css" /&gt;

&lt;link href="https://dl.dropbox.com/u/59215462/SH/shThemeDefault.css" rel="stylesheet" type="text/css" /&gt;
&lt;script type="text/javascript"&gt;
    SyntaxHighlighter.defaults['gutter'] = true;
    SyntaxHighlighter.all();
&lt;/script&gt;

&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/WB9JqvND8bI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/2743138709177225589/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=2743138709177225589" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/2743138709177225589?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/2743138709177225589?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/WB9JqvND8bI/center-html-element.html" title="Center a HTML element" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/10/center-html-element.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEMNSHgycCp7ImA9WhNSF0s.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-3761781028247524402</id><published>2012-10-15T13:55:00.003-07:00</published><updated>2012-11-01T02:34:59.698-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-11-01T02:34:59.698-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>Div side by side in one line</title><content type="html">&lt;script src="https://dl.dropbox.com/u/59215462/SH/shCore.js" type="text/javascript"&gt;&lt;/script&gt;

 &lt;script src="https://dl.dropbox.com/u/59215462/SH/shBrushJScript.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;link href="https://dl.dropbox.com/u/59215462/SH/shCore.css" rel="stylesheet" type="text/css" /&gt;

&lt;link href="https://dl.dropbox.com/u/59215462/SH/shThemeDefault.css" rel="stylesheet" type="text/css" /&gt;

&lt;p&gt;Find answer how to place two div elements side by side in the same line. When two div elements are placed one after another on HTML page they are displayed in two lines. They usually end up one above the other, never side by side.&lt;/p&gt;
&lt;p&gt;Here you can find:
&lt;ul&gt;&lt;li&gt;how to place two div elements side by side using inline-block&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;example of three div elements side by side using inline-block&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;how to place two div side by side using table&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;h4&gt;Two div elements side by side using inline-block&lt;/h4&gt;

&lt;div style="width: 100px; height: 100px; border: solid 1px #ccc; display: inline-block;"&gt;
 &lt;p&gt;This is the first div with text.&lt;/p&gt;
 &lt;/div&gt;

&lt;div style="width: 100px; height: 100px; border: solid 1px #ccc; display: inline-block;"&gt;
&lt;p&gt;This is second div with text&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Here is a code:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;div style=&amp;quot;width: 100px; height: 100px; 
border: solid 1px #ccc; display: inline-block;&amp;quot;&amp;gt;
 &amp;lt;p&amp;gt;This is the first div element.&amp;lt;/p&amp;gt;
 &amp;lt;/div&amp;gt;

&amp;lt;div style=&amp;quot;width: 100px; height: 100px; 
border: solid 1px #ccc; display: inline-block;&amp;quot;&amp;gt;
&amp;lt;p&amp;gt;This is second div element.&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;br/&gt; 
&lt;p&gt;To make two div elements in same line &lt;i&gt;display:inline-block&lt;/i&gt; is used. An inline block is placed inline (ie. on the same line as adjacent content), but it behaves as a block.&lt;/p&gt;
&lt;p&gt;Sometime you want to &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/10/center-html-element.html"&gt;center a div element&lt;/a&gt;&lt;/b&gt;, use margin-right:auto and margin-left:auto inside style attribute. &lt;/p&gt;
&lt;h4&gt;Three div elements side by side using inline-block&lt;/h4&gt;
&lt;style&gt;
.oneline {
 width: 100px;
 height: 100px;
 border: solid 1px #ccc;
 display: inline-block;
}
&lt;/style&gt;

&lt;div class="oneline"&gt;
&lt;p&gt;This is the first div&lt;/p&gt;
&lt;/div&gt;

&lt;div class="oneline"&gt;
&lt;p&gt;This is second div&lt;/p&gt;
&lt;/div&gt;

&lt;div class="oneline"&gt;
&lt;p&gt;This is the third div&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Code:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;style&amp;gt;
.oneline {
 width: 100px;
 height: 100px;
 border: solid 1px #ccc;
 display: inline-block;
}
&amp;lt;/style&amp;gt;

&amp;lt;div class=&amp;quot;oneline&amp;quot;&amp;gt;
&amp;lt;p&amp;gt;This is the first div&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div class=&amp;quot;oneline&amp;quot;&amp;gt;
&amp;lt;p&amp;gt;This is second div&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div class=&amp;quot;oneline&amp;quot;&amp;gt;
&amp;lt;p&amp;gt;This is third div&amp;lt;/p&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;p&gt;&lt;ul&gt;
&lt;li&gt;in lines 1 - 9 style for class oneline is defined. "&lt;i&gt;display:inline-block&lt;/i&gt;" is used like in previous example.&lt;/li&gt;
&lt;li&gt;all three divs have class "oneline" so they are in one line.&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;h4&gt;Two div elements in one line using float left&lt;/h4&gt;
&lt;style&gt; 
    .floatoneline 
    {  width: 100px;  
       height: 100px;  
       border: solid 1px #ccc; 
       float: left;  
    } 
    .pageHolder
    { 
    overflow: auto; 
    width: 100%; 
    } 
&lt;/style&gt;   
    &lt;div class="pageHolder"&gt;
    &lt;div class="floatoneline"&gt; &lt;p&gt;This is the first div&lt;/p&gt; &lt;/div&gt;  
    &lt;div class="floatoneline"&gt; &lt;p&gt;This is second div&lt;/p&gt; &lt;/div&gt;  
    &lt;div class="floatoneline"&gt; &lt;p&gt;This is third div&lt;/p&gt; &lt;/div&gt;
    &lt;/div&gt;
 &lt;span&gt;This is in new line&lt;/span&gt;
&lt;p&gt;Code:&lt;/p&gt;
&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;style&amp;gt; 
    .floatoneline 
    {  width: 100px;  
       height: 100px;  
       border: solid 1px #ccc; 
       float: left;  
    } 
    .pageHolder
    { 
    overflow: auto; 
    width: 100%; 
    } 

&amp;lt;/style&amp;gt;   
    &amp;lt;div class=&amp;quot;pageHolder&amp;quot;&amp;gt;
    &amp;lt;div class=&amp;quot;floatoneline&amp;quot;&amp;gt; &amp;lt;p&amp;gt;This is the first div&amp;lt;/p&amp;gt; &amp;lt;/div&amp;gt;  
    &amp;lt;div class=&amp;quot;floatoneline&amp;quot;&amp;gt; &amp;lt;p&amp;gt;This is second div&amp;lt;/p&amp;gt; &amp;lt;/div&amp;gt;  
    &amp;lt;div class=&amp;quot;floatoneline&amp;quot;&amp;gt; &amp;lt;p&amp;gt;This is third div&amp;lt;/p&amp;gt; &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;span&amp;gt;This is in new line&amp;lt;/span&amp;gt;
&lt;/pre&gt;
&lt;p&gt;Using float:left is best way to place multiple div elements in one line. Why? Because inline-block does have some problem when is viewed in IE 9.&lt;/p&gt;
&lt;p&gt;Class pageHolder is used to clear floats. It is like &amp;lt;br /&amp;gt; but for folats.&lt;/p&gt;
&lt;h4&gt;Two div elements side by side in one line using table&lt;/h4&gt;
&lt;table border="1"&gt;
&lt;td&gt;
    &lt;div&gt;First div&lt;/div&gt;
&lt;/td&gt;
&lt;td&gt;
    &lt;div&gt;Second div&lt;/div&gt;
&lt;/td&gt;
&lt;/table&gt;
&lt;p&gt;Code:&lt;/p&gt;

&lt;pre class="brush: js; gutter: true;"&gt;
&amp;lt;table border=&amp;quot;1&amp;quot;&amp;gt;
&amp;lt;td&amp;gt;
    &amp;lt;div&amp;gt;First div&amp;lt;/div&amp;gt;
&amp;lt;/td&amp;gt;
&amp;lt;td&amp;gt;
    &amp;lt;div&amp;gt;Second div&amp;lt;/div&amp;gt;
&amp;lt;/td&amp;gt;
&amp;lt;/table&amp;gt;
&lt;/pre&gt;
&lt;p&gt;Above is a simple example how to place two divs together in one line using table. Just make a table and in one row place two columns with divs inside.&lt;/p&gt;

&lt;script type="text/javascript"&gt;
    SyntaxHighlighter.defaults['gutter'] = true;
    SyntaxHighlighter.all();
&lt;/script&gt;









&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/VvXtEuc2ydU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/3761781028247524402/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=3761781028247524402" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/3761781028247524402?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/3761781028247524402?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/VvXtEuc2ydU/div-side-by-side-in-one-line.html" title="Div side by side in one line" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/10/div-side-by-side-in-one-line.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEESH8zeSp7ImA9WhJaGUo.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-2473537158646018991</id><published>2012-09-19T12:18:00.024-07:00</published><updated>2012-10-11T09:23:29.181-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-10-11T09:23:29.181-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><category scheme="http://www.blogger.com/atom/ns#" term="jQuery" /><title>Change image onclick with jQuery</title><content type="html">&lt;p&gt;Learn how to change image when onclick event occurs (with help of jQuery). My previous article was about how to &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/09/change-image-onclick-with-javascript.html"&gt;change image with onclick event with common javascript&lt;/a&gt;&lt;/b&gt;. This article is focused on doing the same thing but with jQuery.&lt;/p&gt;
&lt;p&gt;First there will be one simple demonstration of changing image with onclick event with two buttons. Each button change image when clicked.&lt;/p&gt;
&lt;p&gt;Second demonstration is how to change image when onclick event is happened on that image. So, image is changed every time user click on it.&lt;/p&gt;

&lt;h4&gt;Changing image after onclick event on button with jQuery&lt;/h4&gt;
 &lt;p&gt;
        &lt;img alt="changing image when onclick event occurs" src="http://www.userinterfaceicons.com/80x80/redo.png" 
            style="height: 85px; width: 198px" id="ChangeImage" /&gt;&lt;/p&gt;
&lt;p&gt;
&lt;input id="Undo" type="button" value="Show Undo" /&gt;&amp;nbsp;&amp;nbsp; &lt;input id="Redo" type="button" value="Show Redo"  /&gt;&lt;/p&gt;
&lt;script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;      &lt;script type="text/javascript"&gt;
        $(document).ready(function () {
            $("#Undo").click(function () {
                $('#ChangeImage').attr('src', 'http://www.userinterfaceicons.com/80x80/undo.png');
            });
            $("#Redo").click(function () {
                $('#ChangeImage').attr('src', 'http://www.userinterfaceicons.com/80x80/redo.png');
            });
        });

    &lt;/script&gt;  
&lt;p&gt;When "Show Undo" button is clicked arrow is pointed to left, when "Show Redo" is clicked image is changed to arrow pointed to left.&lt;/p&gt;
&lt;p&gt;Let's take a look at code:&lt;/p&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
&amp;lt;p&amp;gt;&amp;lt;img alt=&amp;quot;&amp;quot; src=&amp;quot;http://www.userinterfaceicons.com/80x80/redo.png&amp;quot; style=&amp;quot;height: 85px; width: 198px&amp;quot; id=&amp;quot;ChangeImage&amp;quot; /&amp;gt;
&amp;lt;/p&amp;gt;
     
&amp;lt;p&amp;gt;&amp;lt;input id=&amp;quot;Undo&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show undo&amp;quot; /&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp; &amp;lt;input id=&amp;quot;Redo&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show Redo&amp;quot;  /&amp;gt;
&amp;lt;/p&amp;gt;


    &amp;lt;script src=&amp;quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;

    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
        $(document).ready(function () {
            $(&amp;quot;#Undo&amp;quot;).click(function () {
                $(&amp;#39;#ChangeImage&amp;#39;).attr(&amp;#39;src&amp;#39;, &amp;#39;http://www.userinterfaceicons.com/80x80/undo.png&amp;#39;);
            });
            $(&amp;quot;#Redo&amp;quot;).click(function () {
                $(&amp;#39;#ChangeImage&amp;#39;).attr(&amp;#39;src&amp;#39;, &amp;#39;http://www.userinterfaceicons.com/80x80/redo.png&amp;#39;);
            });
        });
    &amp;lt;/script&amp;gt;
&lt;/FONT&gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;&lt;b&gt;Explanation of code for alternating image:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;on the top there are HTML code for image and two buttons
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
&amp;lt;p&amp;gt;&amp;lt;img alt=&amp;quot;&amp;quot; src=&amp;quot;http://www.userinterfaceicons.com/80x80/redo.png&amp;quot; style=&amp;quot;height: 85px; width: 198px&amp;quot; id=&amp;quot;ChangeImage&amp;quot; /&amp;gt;
&amp;lt;/p&amp;gt;
     
&amp;lt;p&amp;gt;&amp;lt;input id=&amp;quot;Undo&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show undo&amp;quot; /&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp; &amp;lt;input id=&amp;quot;Redo&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show Redo&amp;quot;  /&amp;gt;
&amp;lt;/p&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;to use jQuery we need to have a call to jQuery library
&lt;br /&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
   &amp;lt;script src=&amp;quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;the main part of jQuery code, two onclick events, when input Undo is clicked image with id "ChangeImage" is changed to Undo image. 
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;when input Redo is clicked image with id "ChangeImage" is changed to Redo image
&lt;br /&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
 &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
        $(document).ready(function () {
            $(&amp;quot;#Undo&amp;quot;).click(function () {
                $(&amp;#39;#ChangeImage&amp;#39;).attr(&amp;#39;src&amp;#39;, &amp;#39;http://www.userinterfaceicons.com/80x80/undo.png&amp;#39;);
            });
            $(&amp;quot;#Redo&amp;quot;).click(function () {
                $(&amp;#39;#ChangeImage&amp;#39;).attr(&amp;#39;src&amp;#39;, &amp;#39;http://www.userinterfaceicons.com/80x80/redo.png&amp;#39;);
            });
        });
    &amp;lt;/script&amp;gt;
&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h4&gt;Alternate image when image is clicked with jQuery&lt;/h4&gt;
&lt;p&gt;When image below is clicked, image is changed.&lt;/p&gt;
&lt;img src="http://www.userinterfaceicons.com/80x80/undo.png" class="img-swap" /&gt;     &lt;script&gt;
        $(function () {
            $(".img-swap").live("click", function () {
                if ($(this).attr("class") == "img-swap") {
                    this.src = this.src.replace("undo", "redo");
                } else {
                    this.src = this.src.replace("redo", "undo");
                }
                $(this).toggleClass("on");
            });
        });
     &lt;/script&gt; 
&lt;p&gt;Check code how to accomplish change image when onclick event is raised:&lt;/p&gt;
 &lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
  &amp;lt;img src=&amp;quot;http://www.userinterfaceicons.com/80x80/undo.png&amp;quot; class=&amp;quot;img-swap&amp;quot; /&amp;gt;

 &amp;lt;script src=&amp;quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script&amp;gt;
        $(function () {
            $(&amp;quot;.img-swap&amp;quot;).live(&amp;quot;click&amp;quot;, function () {
                if ($(this).attr(&amp;quot;class&amp;quot;) == &amp;quot;img-swap&amp;quot;) {
                    this.src = this.src.replace(&amp;quot;undo&amp;quot;, &amp;quot;redo&amp;quot;);
                } else {
                    this.src = this.src.replace(&amp;quot;redo&amp;quot;, &amp;quot;undo&amp;quot;);
                }
                $(this).toggleClass(&amp;quot;on&amp;quot;);
            });
        });
     &amp;lt;/script&amp;gt;
&lt;/FONT&gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;How this code is working?&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;first line is image with class "img-swap"&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;then there is a function which occurs when object with class "img-swap" is clicked&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;if clicked class is "img-swap" then "undo" is replaced with "redo" for src attribute, so the other image is showed&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;if clicked class is not "img-swap" then "redo" is replaced with "undo" for src attribute, so the other image is showed&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;at the end we have - &lt;i&gt;$(this).toggleClass(&amp;quot;on&amp;quot;)&lt;/i&gt; - this code add "on" to class "img-swap" so we get class "img-swap on", on the second click with - &lt;i&gt;$(this).toggleClass(&amp;quot;on&amp;quot;)&lt;/i&gt; - we get only "img-swap"&lt;/li&gt;&lt;/p&gt;
&lt;/ul&gt;












&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/GQR3vG0xavc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/2473537158646018991/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=2473537158646018991" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/2473537158646018991?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/2473537158646018991?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/GQR3vG0xavc/change-image-onclick-with-jquery.html" title="Change image onclick with jQuery" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/09/change-image-onclick-with-jquery.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EAQHg5eCp7ImA9WhNTE04.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-789680165140211699</id><published>2012-09-04T12:24:00.076-07:00</published><updated>2012-10-15T13:07:21.620-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-10-15T13:07:21.620-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript-HTML" /><title>Change image onclick with javascript</title><content type="html">&lt;p&gt;How to change image with onclick javascript event on your web page? Easy, just follow instructions you find here.&lt;/p&gt;
&lt;p&gt;The onclick event occurs when the user clicks on some element on web page, most when button is clicked. So if you visited this article you probably want some image appear after some button is clicked (then onclick event occurs).&lt;/p&gt;
&lt;p&gt;There are two demonstrations and explanations:
&lt;ul&gt;&lt;li&gt;change image when button is clicked&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;change image when image is clicked&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;p&gt;If you like jQuery visit: &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/09/change-image-onclick-with-jquery.html"&gt;Alternate image on click with jQuery&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
&lt;h4&gt;Change image when button is clicked&lt;/h4&gt;
&lt;p&gt;Give a look at demonstration below, when "Show redo" button is clicked onclick event occurs and image is changed to "redo" image. When "Show undo" is clicked image is changed to "undo" image. &lt;/p&gt;
&lt;p&gt;
        &lt;img alt="" src="http://www.userinterfaceicons.com/80x80/redo.png" 
            style="height: 85px; width: 198px" id="image" /&gt;&lt;/p&gt;
    &lt;p&gt;
        &lt;input id="Button1" type="button" value="Show redo" onclick="ShowRedo()" /&gt;&amp;nbsp;&amp;nbsp; &lt;input id="Button2" 
            type="button" value="Show undo" onclick="ShowUndo()" /&gt;&lt;/p&gt;

&lt;script language="javascript"&gt;
    function ShowRedo() {
        document.getElementById("image").src = "http://www.userinterfaceicons.com/80x80/redo.png";  
    }

    function ShowUndo() {
        document.getElementById("image").src = "http://www.userinterfaceicons.com/80x80/undo.png"; 
    }
&lt;/script&gt;
&lt;p&gt;Try to click and make sure.&lt;/p&gt;
&lt;p&gt;Here is step by step guide how to make onclick change image demonstration.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;first you need to add one img element and two input elements.&lt;/li&gt;


&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;&amp;lt;p&amp;gt;
        &amp;lt;img alt=&amp;quot;&amp;quot; src=&amp;quot;http://www.userinterfaceicons.com/80x80/redo.png&amp;quot; 
            style=&amp;quot;height: 85px; width: 198px&amp;quot; id=&amp;quot;image&amp;quot; /&amp;gt;&amp;lt;/p&amp;gt;
    &amp;lt;p&amp;gt;
        &amp;lt;input id=&amp;quot;Button1&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show redo&amp;quot; onclick=&amp;quot;ShowRedo()&amp;quot; /&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp; 
&amp;lt;input id=&amp;quot;Button2&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show undo&amp;quot; onclick=&amp;quot;ShowUndo()&amp;quot; /&amp;gt;&amp;lt;/p&amp;gt;&lt;/FONT&gt;&lt;/span&gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;second step is to add javascript code which will be called when one of input elements (buttons) is clicked
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;&amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;
    function ShowRedo() 
{
        document.getElementById(&amp;quot;image&amp;quot;).src = &amp;quot;http://www.userinterfaceicons.com/80x80/redo.png&amp;quot;;  
    }

    function ShowUndo() 
{
        document.getElementById(&amp;quot;image&amp;quot;).src = &amp;quot;http://www.userinterfaceicons.com/80x80/undo.png&amp;quot;; 
    }
&amp;lt;/script&amp;gt;&lt;/FONT&gt;&lt;/span&gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;so, when Button1 is clicked, onclick event occurs and ShowRedo() method is called. ShowRedo method change image to "Redo" image&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;when Button2 is clicked, onclick event occurs and ShowUndo() method is called. ShowUndo method change image to "Undo" image&lt;/li&gt;
&lt;br/&gt;
&lt;li&gt;here is complete code for this demonstration:
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;
&amp;lt;p&amp;gt;
        &amp;lt;img alt=&amp;quot;&amp;quot; src=&amp;quot;[PATHTOFIRSTIMAGE]&amp;quot; 
            style=&amp;quot;height: 85px; width: 198px&amp;quot; id=&amp;quot;image&amp;quot; /&amp;gt;&amp;lt;/p&amp;gt;
    &amp;lt;p&amp;gt;
        &amp;lt;input id=&amp;quot;Button1&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show redo&amp;quot; onclick=&amp;quot;ShowRedo()&amp;quot; /&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp; 
&amp;lt;input id=&amp;quot;Button2&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Show undo&amp;quot; onclick=&amp;quot;ShowUndo()&amp;quot; /&amp;gt;&amp;lt;/p&amp;gt;

&amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;
    function ShowRedo() 
{
        document.getElementById(&amp;quot;image&amp;quot;).src = &amp;quot;[PATHTOFIRSTIMAGE]&amp;quot;;  
    }

    function ShowUndo() 
{
        document.getElementById(&amp;quot;image&amp;quot;).src = &amp;quot;[PATHTOSECONDIMAGE]&amp;quot;; 
    }
&amp;lt;/script&amp;gt;&lt;/FONT&gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h4&gt;Change image when user cick on image&lt;/h4&gt;
&lt;p&gt;Below is example how to change image when user click on this image. Try to click it and image will change.&lt;/p&gt;
&lt;p&gt;
        &lt;img alt="" src="http://www.userinterfaceicons.com/80x80/minimize.png" 
            style="height: 85px; width: 198px" id="imgClickAndChange" onclick="changeImage()"  /&gt;&lt;/p&gt;

&lt;script language="javascript"&gt;
    function changeImage() {

        if (document.getElementById("imgClickAndChange").src == "http://www.userinterfaceicons.com/80x80/minimize.png") 
        {
            document.getElementById("imgClickAndChange").src = "http://www.userinterfaceicons.com/80x80/maximize.png";
        }
        else 
        {
            document.getElementById("imgClickAndChange").src = "http://www.userinterfaceicons.com/80x80/minimize.png";
        }
    }
&lt;/script&gt;
&lt;p&gt;It is accomplished with very similar way like demonstration with two buttons and change image. The difference is that onclick event is happening when image is clicked not button.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;on the start we have image element with onclick event which call changeImage javascript merhod&lt;/li&gt;
&lt;br/&gt;
&lt;li&gt;when onclick event of image occurs javascript method changeImage() is called&lt;/li&gt;
&lt;br/&gt;
&lt;li&gt;if src attribute of image element is set to first image then second image is displayed&lt;/li&gt;&lt;br/&gt;
&lt;li&gt;if src attribute of image element is set to second image then first image is displayed&lt;/li&gt;&lt;br/&gt;
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;font COLOR="brown"&gt;&amp;lt;p&amp;gt;
        &amp;lt;img alt=&amp;quot;&amp;quot; src=&amp;quot;http://www.userinterfaceicons.com/80x80/minimize.png&amp;quot; 
            style=&amp;quot;height: 85px; width: 198px&amp;quot; id=&amp;quot;imgClickAndChange&amp;quot; onclick=&amp;quot;changeImage()&amp;quot;  /&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;
    function changeImage() {

        if (document.getElementById(&amp;quot;imgClickAndChange&amp;quot;).src == &amp;quot;http://www.userinterfaceicons.com/80x80/minimize.png&amp;quot;) 
        {
            document.getElementById(&amp;quot;imgClickAndChange&amp;quot;).src = &amp;quot;http://www.userinterfaceicons.com/80x80/maximize.png&amp;quot;;
        }
        else 
        {
            document.getElementById(&amp;quot;imgClickAndChange&amp;quot;).src = &amp;quot;http://www.userinterfaceicons.com/80x80/minimize.png&amp;quot;;
        }
    }
&amp;lt;/script&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/bjgStdkDTTs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/789680165140211699/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=789680165140211699" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/789680165140211699?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/789680165140211699?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/bjgStdkDTTs/change-image-onclick-with-javascript.html" title="Change image onclick with javascript" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/09/change-image-onclick-with-javascript.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEMQX09eip7ImA9WhNVGE0.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-5054996703266287923</id><published>2012-09-03T12:09:00.000-07:00</published><updated>2012-12-29T09:54:40.362-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-12-29T09:54:40.362-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>Increase website traffic</title><content type="html">&lt;p&gt;If you want to have successful and high traffic web site or blog read this article and you will find a few advices.&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;Advices for increasing web traffic:&lt;/p&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/10/force-google-reindex-of-site.html"&gt;Make sure Google indexed your web site&lt;/a&gt;&lt;/b&gt; - find out how to know does Google indexed your site and tips for submitting a request for Google crawler&lt;/li&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2011/11/how-to-keyword-research.html"&gt;Learn how to make keyword research&lt;/a&gt;&lt;/b&gt; - choosing the right keywords for your article could be a key for making top ranking article. Follow the link and learn what free keyword research tools exists on the web and how to use them.
&lt;br /&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-zIQapj1RCsU/TskoH09oVtI/AAAAAAAAAwI/fN9zV6BfLzY/s1600/GoogleDirectlyCompetition.JPG" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="51" width="400" src="http://3.bp.blogspot.com/-zIQapj1RCsU/TskoH09oVtI/AAAAAAAAAwI/fN9zV6BfLzY/s400/GoogleDirectlyCompetition.JPG" rel="nofollow" alt="Find directly competing pages with Google operator allinanchor for optimized keyword research" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2011/12/web-page-optimization-techniques.html"&gt;Basic web page optimization techinques&lt;/a&gt;&lt;/b&gt; - a short tutorial about most essential things you should know when optimize you web page for increasing web traffic such as: title tags, URL keyword optimization, keyword position on web page, keyword density, keyword proximity...
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-YF5IDRnIooI/UN7u-U7nAHI/AAAAAAAAA68/Hq2KcFd4fbY/s1600/OnPageSEO.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em"&gt;&lt;img border="0" height="101" width="160" src="http://1.bp.blogspot.com/-YF5IDRnIooI/UN7u-U7nAHI/AAAAAAAAA68/Hq2KcFd4fbY/s400/OnPageSEO.jpg" alt="On page optimization" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/10/google-search-operators-and-seo.html"&gt;Use google search operators for Seo&lt;/a&gt;&lt;/b&gt; - find what are google search operators and how to use them for increasing visits on your web site&lt;/li&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/05/how-to-analyze-and-improve-bounce-rate.html"&gt;How to analyze and improve bounce rate&lt;/a&gt;&lt;/b&gt; - Bounce rate is the percentage of visitors who entered the site on a page and left right away. Bounce rate should be lower as possible. Learn how to measure, track and improve bounce rate.&lt;/li&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2009/07/increase-blogger-traffic-change-title.html"&gt;Increase blogger traffic change title&lt;/a&gt;&lt;/b&gt; - Here is simple procedure which help me to significantly increase blogger traffic which can be applied for other types of web sites too.&lt;/li&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="font-weight:bold; font-size: 12pt"&gt;[Post title]: [Blog title]&lt;/span&gt;
&lt;br /&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="font-weight:bold; font-size: 12pt"&gt;Title is important&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;

&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/01/increase-website-traffic-tips-from-best.html"&gt;Tips for increasing website traffic from best&lt;/a&gt;&lt;/b&gt; - advices for increasing web traffic from successful blogger Ana Hoffman.&lt;/li&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/01/make-blog-plan-for-next-year.html"&gt;Make blog plan for next year&lt;/a&gt;&lt;/b&gt; - Here is some of my thoughts what to do for more vistis on your blog or web site.&lt;/li&gt;&lt;/ul&gt;
&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/VZd46IkZadU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/5054996703266287923/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=5054996703266287923" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/5054996703266287923?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/5054996703266287923?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/VZd46IkZadU/increase-website-traffic.html" title="Increase website traffic" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-zIQapj1RCsU/TskoH09oVtI/AAAAAAAAAwI/fN9zV6BfLzY/s72-c/GoogleDirectlyCompetition.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/09/increase-website-traffic.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4FQH08cSp7ImA9WhVSGEk.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-8048896815638125528</id><published>2012-03-14T13:27:00.001-07:00</published><updated>2012-03-15T13:38:31.379-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-15T13:38:31.379-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>Best blogging tips in Jan and Feb 2012</title><content type="html">&lt;p&gt;Purpose of this article is to give readers a short list and brief explanation of most useful articles (I found recently) with tips how to blog and make more visitors and money. Article will be separated on few separate topics about blogging I learned recently. This is first article in a series. Expect more article like this for a month or two... &lt;/p&gt;
&lt;p&gt;In this article you can learn about :
&lt;ul&gt;&lt;li&gt;Google page layout algorithm - page layout (specially above the fold area) have influence on how Google rank page&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;how AdSense unit inside post below title increase ad clicks and how to do it in blogger&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;guide for optimizing Google+ profile, facebook page, twitter profile...&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;how to get more web traffic&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Domain name change impact on seach engine ranking...&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;h4&gt;Google page layout algorithm - page layout (specially above the fold area) have influence on how Google rank page&lt;/h4&gt;
&lt;p&gt;Recently on January 19 2012 Google make new algorithmic change. This change penalize bloggers who have lot of ads in above the fold area which push content down. I learned about this change from &lt;a href="http://kezanari.com/google-hates-adsense.html/" rel="nofollow"&gt;kezanari blog&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I write an article &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/02/how-above-fold-ads-reduce-google.html"&gt;how above fold ads reduce Google search engine rankings&lt;/a&gt;&lt;/b&gt;. Probably most comprehensive article about this topic you can find in searchengineland article about &lt;b&gt;&lt;a href="http://searchengineland.com/too-many-ads-above-the-fold-now-penalized-by-googles-page-layout-algo-108613" rel="nofollow"&gt;ads and google penalize&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://searchengineland.com/too-many-ads-above-the-fold-now-penalized-by-googles-page-layout-algo-108613" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em" rel="nofollow"&gt;&lt;img border="0" height="169" width="320" src="http://4.bp.blogspot.com/-cXXquihETVQ/T2JQjP37MNI/AAAAAAAAA4w/xG9BTIjBW8Q/s320/SELAboveTheFoldSm.JPG" alt="Excellent article Pages With Too Many Ads “Above The Fold” Now Penalized By Google Page Layout Algorithm" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;

&lt;p&gt;One of adviced tools to test does your site is affected by Google page layout algorithm is &lt;b&gt;&lt;a href="http://browsersize.googlelabs.com/"&gt;Browsersize&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
&lt;h4&gt;How AdSense unit inside post below title increase ad clicks and how to do it in blogger&lt;/h4&gt;
&lt;p&gt;To avoid "Google page layout algorithm" I replaced AdSense units from under the post area to in the post area below the title. This change increase my AdSense revenure per visit (CTR - click through rate). To find more how to place AdSense ad unit inisde post below the title and how it affect AdSense revenue read : &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/03/how-to-add-adsense-below-post-title-for.html"&gt;How to add adsense below post title&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
&lt;h4&gt;Guide for optimizing Google+ profile, facebook page, twitter profile...&lt;/h4&gt;
&lt;p&gt;&lt;b&gt;&lt;a href="http://sem-group.net/search-engine-optimization-blog/seo/how-to-optimize-7-popular-social-media-profiles-for-seo/" rel="nofollow"&gt;How to Optimize 7 Popular Social Media Profiles for SEO&lt;/a&gt;&lt;/b&gt; have detailed instruction for optimizing most popular Social Media profile such as G+, Facebook, twitter...&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://sem-group.net/search-engine-optimization-blog/seo/how-to-optimize-7-popular-social-media-profiles-for-seo/" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em" rel="nofollow"&gt;&lt;img border="0" height="320" width="291" src="http://4.bp.blogspot.com/-_Eqq8gy3m1Q/T2JSZDrn2RI/AAAAAAAAA48/TMuKlU2AEAE/s320/OptimizeGooglePlusProfileSm.JPG" alt="How to Optimize 7 Popular Social Media Profiles for SEO on SEM group" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;

&lt;h4&gt;How to get more web traffic&lt;/h4&gt;
&lt;p&gt;&lt;b&gt;&lt;a href="http://www.trafficgenerationcafe.com/get-more-traffic/" rel="nofollow"&gt;How to get more web traffic&lt;/a&gt;&lt;/b&gt; is an excellent in depth article with a lot of tips and tricks for increasing web traffic. The writer of this article is Ana Hoffman and she have excellent blog about blogging and making money online. She earn money from her blog, visit her &lt;b&gt;&lt;a href="http://www.trafficgenerationcafe.com/make-money-report-december-2011/" rel="nofollow"&gt;make money report on december 2011&lt;/a&gt;&lt;/b&gt; to see how successful is she.&lt;/p&gt;
&lt;h4&gt;Domain name change impact on search engine ranking&lt;/h4&gt;
&lt;p&gt;If you thinking about domain name change read article &lt;b&gt;&lt;a href="http://www.consumingexperience.com/2007/08/domain-name-change-search-engine.html" rel="nofollow"&gt;Domain name change&lt;/a&gt;&lt;/b&gt; and find practical impact of domain name change on authors experience with lots of informations about this topic.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/E_XRyHPFk30" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/8048896815638125528/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=8048896815638125528" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8048896815638125528?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/8048896815638125528?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/E_XRyHPFk30/best-blogging-tips-in-jan-and-feb-2012.html" title="Best blogging tips in Jan and Feb 2012" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-cXXquihETVQ/T2JQjP37MNI/AAAAAAAAA4w/xG9BTIjBW8Q/s72-c/SELAboveTheFoldSm.JPG" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/03/best-blogging-tips-in-jan-and-feb-2012.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcMQH87fyp7ImA9WhVSEUg.&quot;"><id>tag:blogger.com,1999:blog-2720325367592426200.post-1645830916168615862</id><published>2012-03-07T12:44:00.000-08:00</published><updated>2012-03-07T12:44:41.107-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-07T12:44:41.107-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog-tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><category scheme="http://www.blogger.com/atom/ns#" term="AdSense" /><title>How to add AdSense below post title (for blogger)</title><content type="html">&lt;p&gt;Recently I add AdSense ad below post title on my blogger blog and result of my action is significant growth in CTR (Click Through Rate). Higher CTR usually leads to higher revenue.&lt;/p&gt; 
&lt;p&gt;In this article I will try to answer on next questions
&lt;ul&gt;
&lt;li&gt;why bloggers should place adsense ads inside post&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;does AdSense ads directly below title inside Blogger posts are permitted and what to do?&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;How to add AdSense ad below post title in each Blogger post&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;h2&gt;Why bloggers should add AdSense ad below post?&lt;/h2&gt;
&lt;p&gt;Answer is simple, AdSense ads placed below post title have higher CTR value. This position is one of best performing for earning money. Check the image of Google heat map for ideal ads placing. Dark orange is for strongest performance to light yellow for weakest performance.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-Tnc9igGK9fc/TVrVP4ZevrI/AAAAAAAAAcQ/qq1Su65Hhec/s1600/AdSenseHeatPositionAdsMap.JPG" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em" rel="nofollow"&gt;&lt;img border="0" height="300" width="305" src="http://2.bp.blogspot.com/-Tnc9igGK9fc/TVrVP4ZevrI/AAAAAAAAAcQ/qq1Su65Hhec/s1600/AdSenseHeatPositionAdsMap.JPG" alt="Google heat map for best Adsens placing for better CTR" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;Since &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2012/02/how-above-fold-ads-reduce-google.html"&gt;Page layout algorithm change&lt;/a&gt;&lt;/b&gt;, it is no longer advisable to place large block of AdSense ads above posts. "Page layout algorithm" cause Google penalty for blogs where relevant content is pushed down by large blocks of ads. In this circumstances placing one AdSense below post title right to post content text is a very good solution.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-T8xSBU3EMDc/T1O2DrJsMEI/AAAAAAAAA4Y/lbtrevaotuE/s1600/AdSenseAdBelowTitleSm.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em" rel="nofollow"&gt;&lt;img border="0" height="249" width="400" src="http://4.bp.blogspot.com/-T8xSBU3EMDc/T1O2DrJsMEI/AAAAAAAAA4Y/lbtrevaotuE/s400/AdSenseAdBelowTitleSm.jpg" alt="Add AdSense add directly below title and leave a space for content text on the left side" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;In three weeks after adding AdSense below post my CTR grow from 0.26% to 0.42%. To learn more about CTR trends and AdSense combinations on my blog visit : &lt;b&gt;&lt;a href="http://interestingwebs.blogspot.com/2011/03/increase-blog-adsense-revenue-real-case.html"&gt;Increase blog adsense revenue real case scenario&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
&lt;br /&gt;
&lt;h2&gt;Does adding AdSense below title in post is allowed?&lt;/h2&gt;

&lt;p&gt;Using blogger interface you can easily add AdSense ads under post, between the posts or in the sidebar. But to add AdSense ads inside post below post title you should make change directly in blogger template, there is no simple way to do it. Step by step guide how to place AdSense ads below the post title you can find in next section of this article.&lt;/p&gt;
&lt;p&gt;The question is does inserting Googe AdSense ads inside post below the title is permitted by Google term of services? Does this method break the rules?&lt;/p&gt;
&lt;p&gt;Google forbidden placing misleading labels above Google ad units. So, if the AdSense ad unit directly below post title in some cases it could misleading visitors it is image connected with a title.&lt;/p&gt;
&lt;p&gt;It is good practice to add a label above AdSense ad, something like "Sponsored Links" or "Advertisements". With this approach visitor will not be misguided. Take a look at image below how I add a label above the adsense unit below post title.&lt;/p&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-Oue3u3uKVns/T1Z5o2Lo0dI/AAAAAAAAA4k/VtOZrtUavA4/s1600/LabeledAdSenseAdSm.jpg" imageanchor="1" style="clear:left; float:left;margin-right:1em; margin-bottom:1em" rel="nofollow"&gt;&lt;img border="0" height="264" width="287" src="http://4.bp.blogspot.com/-Oue3u3uKVns/T1Z5o2Lo0dI/AAAAAAAAA4k/VtOZrtUavA4/s320/LabeledAdSenseAdSm.jpg" alt="Add a label under AdSense unit if you put this AdSense ad below post tile and visitors will not be mislead" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;p&gt;Personally I started to use this method since 2012-02-12 and  AdSense ad unit work properly without a penalty. Here is the &lt;a href="http://support.google.com/adsense/bin/answer.py?hl=en&amp;answer=187653&amp;topic=29880&amp;ctx=topic" rel="nofollow"&gt;link&lt;/a&gt; to AdSense page where Ad placement inside article is suggested. Here you can find more about &lt;a href="http://support.google.com/adsense/bin/answer.py?hl=en&amp;answer=1346295#Ads_in_emails"&gt;AdSense placement policies&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;How to add AdSense ad unit below post title on blogger&lt;/h2&gt;
&lt;p&gt;Here is short tutorial:
&lt;ul&gt;&lt;li&gt;First go to your &lt;a href="https://www.google.com/adsense/" rel="nofollow"&gt;Google AdSense account&lt;/a&gt; and &lt;b&gt;copy AdSense unit code&lt;/b&gt; you want to implement inside your post&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;go to &lt;a href="http://www.elliotswan.com/postable/" rel="nofollow"&gt;Postable&lt;/a&gt; (or some similar site) paste AdSense code, click button "Make it friendly" and copy encoded AdSense code&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;sign in to your blogger account and go to Layout --&gt; Edit HTML&lt;/li&gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_C4hJ8tIKp9c/SmjDI3Hza1I/AAAAAAAAAK8/3KWzaWLWz6k/s1600-h/EditHTMLBloggerSm.JPG" rel="nofollow"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 53px;" src="http://1.bp.blogspot.com/_C4hJ8tIKp9c/SmjDI3Hza1I/AAAAAAAAAK8/3KWzaWLWz6k/s320/EditHTMLBloggerSm.JPG" border="0" alt="Layout - Edit HTML"id="BLOGGER_PHOTO_ID_5361749913387625298" /&gt;&lt;/a&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;li&gt;it is recommended to backup template on your local hard disk before doing any change in edit template box&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;check Expand Widget Templates checkbox&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;now inside Edit Template textbox find: &lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;data:post.body/&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;just above &lt;i&gt;&amp;lt;data:post.body/&amp;gt;&lt;/i&gt; tag paste the encoded adsense code &lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;click button Save Template and you have AdSense unit just below post title in each post on your blogspot blog&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;if you want to add AdSense ad unit on the right side of your post below post title try with this code (this code should be placed above &lt;i&gt;&amp;lt;data:post.body/&amp;gt;&lt;/i&gt; tag):
&lt;pre style="border-style: solid; border-width: 1px; white-space: pre-wrap; white-space: -o-pre-wrap; white-space: -moz-pre-wrap; word-wrap: break-word; font-family:monospace; font-size:0.9em; padding: 3ex;"&gt;&lt;span style="font-weight:bold;"&gt;&lt;FONT COLOR="brown"&gt;&amp;lt;div style=&amp;#39;float: right;&amp;#39;&amp;gt;

PUT HERE ENCODED ADSENSE CODE

&amp;lt;/div&amp;gt;&lt;/FONT&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/UsefulAndInterestingWebSites/~4/eyi46jPrntQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://interestingwebs.blogspot.com/feeds/1645830916168615862/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2720325367592426200&amp;postID=1645830916168615862" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1645830916168615862?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2720325367592426200/posts/default/1645830916168615862?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/UsefulAndInterestingWebSites/~3/eyi46jPrntQ/how-to-add-adsense-below-post-title-for.html" title="How to add AdSense below post title (for blogger)" /><author><name>Mark</name><uri>http://www.blogger.com/profile/16964923116965247316</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-Tnc9igGK9fc/TVrVP4ZevrI/AAAAAAAAAcQ/qq1Su65Hhec/s72-c/AdSenseHeatPositionAdsMap.JPG" height="72" width="72" /><thr:total>5</thr:total><feedburner:origLink>http://interestingwebs.blogspot.com/2012/03/how-to-add-adsense-below-post-title-for.html</feedburner:origLink></entry></feed>
