Phum-share

Last Updated:    Monday, August 1, 2016

How to Create Magazine Style With Summaries and Thumbnails on Blogger

The Magazine template is very popular nowadays, everyone need a magazine style for their blog . it is great to look and make you website more clear and beautiful ..

Add The Magazine template to your blog template . Just Follow The Step Below ..
Note : When Start to add this code you need to BACKUP of your current template to make sure you won't lose anything important . You Just login your Blogger Dashboard and go to Template and then check on the Backup/Restore button.
After You Have finish a copy of the XML template , click on the Edit HTML button:
Step 1: Find The Code Below By Using CTRL + F Key for find this Line,


<data:post.body/>

Note : You will find it more that once , but you just stop it at third .
Step 2: Remove or Keep it Like Comment up to you , and instead it add this code:



<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
 <span class='post-comment-link'><b:if cond='data:blog.pageType != &quot;item&quot;'><b:if cond='data:post.allowComments'><a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:post.numComments/></a></b:if></b:if></span>
<div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
  <script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
<span class='readmorebutton' style='float:right'><a expr:href='data:post.url'>Read More &#187;</a></span></b:if></b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if>


Step 3: Now Find this Code:


<b:include data='post' name='post'/>


Step 4: Remove or Keep it Like Comment up to you , and instead it add this code:
 
<b:if cond='data:post.isFirstPost'>
<b:if cond='data:blog.homepageUrl == data:blog.url'>
<div id='first'>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<div class='first-body'>

<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div expr:id='&quot;summary1&quot; + data:post.id'><data:post.body/></div>
  <script type='text/javascript'>createSummaryAndThumb1(&quot;summary1<data:post.id/>&quot;);</script>
<span class='post-comment-link'><b:if cond='data:blog.pageType != &quot;item&quot;'><b:if cond='data:post.allowComments'><a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:post.numComments/></a></b:if></b:if></span>
<span class='readmorebutton' style='float:right'><a expr:href='data:post.url'>Read More &#187;</a></span>
</b:if></b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if>

</div>
</div>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
<b:else/>
<b:include data='post' name='post'/>
</b:if>


Step 5: Now Find the </head> tag and paste the following script before/above it:

 <script type='text/javascript'>
posts_no_thumb_sum = 290;
posts_thumb_sum = 240;
img_thumb_height = 80;
img_thumb_width = 80;
first_no_thumb_sum = 580;
first_thumb_sum = 450;
img_thumb_height1 = 145;
img_thumb_width1 = 165;

</script>

<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}

function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = posts_no_thumb_sum;
if(img.length>=1) {
imgtag = '<span class="posts-thumb" style="float:left;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = posts_thumb_sum;
}

  var summary = imgtag + '<div class="summary">' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}

function createSummaryAndThumb1(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = first_no_thumb_sum;
if(img.length>=1) {
imgtag = '<span class="first-post-thumb" style="float:left;"><img src="'+img[0].src+'" width="'+img_thumb_width1+'px" height="'+img_thumb_height1+'px"/></span>';
summ = first_thumb_sum;
}

var summary1 = imgtag + '<div class="summary">' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary1;
}

//]]>
</script>


Step 6: And Now below This Script Above add these CSS Styles:



<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<style type='text/css'>
.first-post-thumb {
    margin-right: 10px;
}

.summary {
    height: 100%;
}

#first { /* Styles for the First Post Container */
    width: auto;
    height: 250px;
    float: left;
    margin-bottom: 10px;
    background-color: #F4F4F4; /* background color for the first post */
    border: 1px solid #E5E5E5; /* border for the first post */}

.first-body { /* Style for the First Post summary */
    color: #545454;
    font-size: 13px;
    text-align: justify;
    padding: 5px 10px;
    line-height: 1.5em;
}

#first h3 a, #first h3 a:visited { /* Style for the First Post Title*/
    border-bottom: 2px solid #DFDFDF;
    color: #515151;
    font-size: 20px;
    display: block;
    margin: 10px auto;
    width: 95%;
    font-size: 20px;
    padding: 0px 0px 4px 0px;
    font-weight: bold;
    text-align: left;
    line-height: 1.4em;
    background: none;
}

#first h3 a:hover { /* Color on mouseover for the First Post Title */
    color: #1061A1;
}

.post { /* Styles for the small posts container */
    float: left;
    margin: 0px 6px 2% 5px;
    width: 46%;
    height: 230px;
    padding: 0px 5px 5px 5px;
    background: #FCFCFC; /* background color for the small posts */
    border: 1px solid #E5E5E5; /* border for the small posts */
    overflow: hidden;
}

.posts-thumb { /* Style for the small posts thumbnails */
    margin-right: 10px;
}

.post-body img, .post-body .tr-caption-container, .Profile img, .Image img, .BlogList .item-thumbnail img {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}


h3.post-title a{ /* Style for the small posts titles */
    font-size: 14px;
    color: #747474;
    text-transform: uppercase;
}

h2.date-header { /* Hide the post date */
    display: none;
}

.post-footer {
    display: none;
}

h3.post-title {
    margin: 0px;
}

.readmorebutton {
    margin-top: 5px;
}

.readmorebutton a { /* Styles for the Read More link */
    color: #767676;
    border: 1px solid #E1E1E1;
    background: #EAEAEA; /* Background color for the Read More link */
    text-decoration: none;
    padding: 3px 5px;
    font-weight: bold;
    font-size: 11px;
    float: right;
    position: relative;
}

.post-comment-link { /* Style for the comment bubble of posts below */
    position: absolute;
    top: -35px;
    right: -10px;
    display: block;
    border: 1px solid #E1E1E1; /* border for the comment bubble */
    background: #EAEAEA; /* background color for the comment bubble */
    font-size: 11px;
    position: absolute;
}

#first .post-comment-link { /* Style for the comment bubble of first post */
    position: absolute;
    top: 10px;
    right: 0px;
}

.post-comment-link a { /* Link color for the comments bubble*/
    padding: 10px;
    color: #6A6A6A;
    text-decoration: none;
    font-weight: bold;
}

#blog-pager {
    clear: both;
}
</style>
</b:if>
</b:if>


This Is Customization:

Script Form step 5 , we have like this section:



posts_no_thumb_sum = 290;
posts_thumb_sum = 240;
img_thumb_height = 80;
img_thumb_width = 80;
first_no_thumb_sum = 580;
first_thumb_sum = 450;
img_thumb_height1 = 145;
img_thumb_width1 = 165;


  • The first number is the number of characters ,
  • The 2nd number is the number of characters ,
  • The 3rd and the 4th is the height and width of the small post thumbnails ,
Thanks it Done !!
Read More »

Last Updated:    Sunday, July 31, 2016

How to Add HTML Encoder/Parser Tool in Blogger Blog to Escape Codes work 100%

Welcome To My Website .




Well if you don't know what does HTML Encoder means than just read this article further. Actually it s an online tool that allows users to escape HTML characters (<, >, &, " etc.) into XML forms to ensure proper display of HTML Codes. This Escape Tool for Blogger will allow you to Escape Adsense ad code so that it can be used to place ads' in Blogger XML Templates. This HTML Encoder is not only limited to use for commenting and Parsing Adsense code but it can also be used to encode or parse any type of JavaScript and HTML Codes. I hope you have understand a atleast a little about HTML Encoder and Escape Tool. If you want to add this HTM Escape tool to your Blogger blog than follow the very easy steps given below.

Step 1 : You can Add this code to anywhere in your blogger . if you have the same this code old code will remove automatic .

Here Code Html


<div dir="ltr" style="text-align: left;" trbidi="on"> <script type="text/javascript"> //<![CDATA[ function html2entitiesundefined){ var re=/[undefined<>"'&]/g for undefinedi=0; i<arguments.length; i++) arguments[i].value=arguments[i].value.replaceundefinedre, functionundefinedm){return replacecharundefinedm)}) } function replacecharundefinedmatch){ if undefinedmatch=="<") return "&lt;" else if undefinedmatch==">") return "&gt;" else if undefinedmatch=="\"") return "&quot;" else if undefinedmatch=="'") return "&#039;" else if undefinedmatch=="&") return "&amp;" } //]]> </script> <br /> <div id="wrap"> <div id="wrap2"> <div class="widget Blog" id="Blog1"> <div class="blog-posts hfeed"> <form class="ht-newform"> <textarea class="ht-encoder" name="data1" placeholder="Add Codes Here and Click Encode to Parse it"></textarea>&nbsp; <br /> <div style="text-align: left;"> </div> <div style="text-align: left;"> &nbsp;<input class="ht2" onclick="html2entitiesundefinedthis.form.data1)" onmouseout="this.className='ht2'" onmouseover="this.className='ht2 ht2hov'" type="button" value="Encode" /> <input class="ht2" onmouseout="this.className='ht2'" onmouseover="this.className='ht2 ht2hov'" type="reset" value="Clear All" /> </div> </form> </div> </div> </div> </div> </div>

CSS



/*ht*/ .ht-encoder{ width: 225px !important; height: 201px !important; padding: 1px; border: 1px; } .ht2{ padding: 5px 20px; color: white; background: rgbundefined10, 155, 166) none repeat scroll 0% 0%; border: medium none; border-radius: 5px; text-align: center; margin: 0 auto; margin-bottom: 5px; cursor: pointer; transition: all 0.3s linear 0s; } .ht2:hover{ color: #4D9431; background: white; } /*ht*/

I hope you enjoyed reading this post on adding HTML Encoder in Blogger Blogs.
If you like this HTML Encoder then Please take some time to recommend this to your friends.
Read More »

How to add fixed facebook like box in the blogger Right Scroll

One of the most useful and popular way of getting more likes into your business's facebook page is to put facebook like box into your blog or sites. Basically, you should copy the script given by facebook to add facebook like box into your site as documented by Facebook developer.
When you point Facebook img, it hovers and slide on left. Then you can see Facebook like box.

Follow the given steps to add fixed Facebook Like Box in the sidebar of blogger template:-

Step 01: Login to blogger dashboard and click on layout>>add gadget.
Step 02: Now choose HTML/Javascript gadget and paste the following block of codes:

<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
//<!--
$(document).ready(function() {$(".facebookstaticlikebox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-252"}, "medium");}, 502);});
//-->
</script>
<style type="text/css">
.facebookstaticlikebox {
background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiblxYsV1eFW-Pcwch-AJjIC5QtVg0CUJi-QFTWqDc2_0-6iN8Q7PtqB5bIL-S-PmL1xzYenewsHOfKXpHZPrMjRpFxxOR7RYcKfwYwR4b2j3d7vGdSXdFPat__ybqQC3-EC3i9tDxrbe1G/s1600/facebook-png.png") no-repeat scroll left center transparent !important;
display: block;
float: right;
height: 272px;
padding: 0 6px 0 45px;
width: 247px;
z-index: 99999;
position: fixed;
right: -250px;
top: 16%;
}
.facebookstaticlikebox div {
border: none;
position: relative;
display: block;
}
.facebookstaticlikebox span {
bottom: 12px;
font: 10px "lucida grande", tahoma, verdana, arial, sans-serif;
position: absolute;
right: 6px;
text-align: right;
z-index: 99999;
}
.facebookstaticlikebox span a {
color: #808080;
text-decoration: none;
}
.facebookstaticlikebox span a:hover {
text-decoration: underline;
}
</style>
<div class="facebookstaticlikebox" style="">
  <div><a href="http://allblogsolution.blogspot.com/" rel="dofollow" target="_blank" title="All Blogging Tips and Tricks"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2ot-RmuAU_R44s3dPu5V7c8cArtqbVX_JUmTaQ2GAZeDB9udqWY5rTtbWSj04-fV1gGHLAt2Pb5LBwGHeAdXkeaR3fCdCwwIGGpvhT2iO4RaB_isZs3Znl1rJjP7SAhg7hD5FmzM0jBY/s1600/all.png" width="60" alt="All Blog Solution" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://allblogsolution.blogspot.com/" rel="dofollow" target="_blank" title="All Blogger Solution"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2ot-RmuAU_R44s3dPu5V7c8cArtqbVX_JUmTaQ2GAZeDB9udqWY5rTtbWSj04-fV1gGHLAt2Pb5LBwGHeAdXkeaR3fCdCwwIGGpvhT2iO4RaB_isZs3Znl1rJjP7SAhg7hD5FmzM0jBY/s1600/all.png" width="60" alt="All Blogger Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://allblogsolution.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj2ot-RmuAU_R44s3dPu5V7c8cArtqbVX_JUmTaQ2GAZeDB9udqWY5rTtbWSj04-fV1gGHLAt2Pb5LBwGHeAdXkeaR3fCdCwwIGGpvhT2iO4RaB_isZs3Znl1rJjP7SAhg7hD5FmzM0jBY/s1600/all.png" alt="All Blog Solution" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a>
    <iframe src="http://www.facebook.com/plugins/likebox.php?href=http://www.facebook.com/allblogsolution&amp;width=247&amp;colorscheme=light&amp;show_faces=true&amp;connections=9&amp;stream=false&amp;header=false&amp;height=272" scrolling="no" frameborder="1" scrolling="no" style="border:none; overflow: hidden;background:#f7f7f7; height: 272px; width: 247px;">
    </iframe>
  </div>
</div>

Step 03: Now save the template.

Note: 


  1. Before saving the template, you have to replace http://www.facebook.com/allblogsolution by your own facebook page url.
  2. Do not use jquery link if there is already jquery link into your blogger template.
Read More »

How to limit the Number of Posts Shown in Blogger Label Pages

In Blogger blog, if you click on any label, it will redirect to you that label page which contain all the post of that particular label. If you have lots of posts for a specific label, the label page slow your loading time and requires more scrolling by your users. So how we can get rid of that ? Yes the only solution is limiting your number of posts appearing on the labels page.


Read More »

Last Updated:    Saturday, July 30, 2016

How to Remove Subscribe to Atom links from your Blogger Blog?

2. How to Remove Subscribe to Atom links from your Blogger Blog?

If you want to remove the text link Subscribe to: Post (Atom) or Subscribe to: Post Comments (Atom) then please follow the following simple steps:
Step-1: Go to your blog Dashboard -> Template -> Edit HTML

navigate to HTML Editor

Step-2: Press Ctrl+F for Search the Below code and delete it




remove the Subscribe to Post (Atom) code

The above code will remove the Subscribe to: Post (Atom) links

Step-3: Press Ctrl+F for Search the Below code and delete it

<b:include data='post.feedLinks' name='feedLinksBody'/>
remove the Subscribe to Post Comments (Atom) codeThe above code will remove the Subscribe to: Post Comments (Atom) links
Step-4: Now save the template and enjoy!
→ Another way to  from all pages of blogger blog.
Press Ctrl+F for Find Below code in your template and delete it
Delete both (post post comments) atom links code

Now, save your template.

After removing this code, visit your blogger blog. The link “Subscribe to Posts (Atom)” and “Subscribe to Posts Comments (Atom)” will not appear on your blogger blog and your blog looks more professional than before.

Read More »

Hide – Subscribe to Posts Comments (Atom) from blogger blog By Useing Only CSS

If you are using blogger then you must have seen Subscribe to: Posts (Atom) on your homepage and Subscribe to: Posts Comments (Atom) on your post pages and other pages.


If you think it is not important for you , you can Hide or Remove it ...

So before removing this links from your blogger blog let me tell you that even though it doesn’t take to much of space but it gives little unprofessional look to your blog so its better to remove it also it’s very simple to remove it. In last post we are also talk about over professional look – How Remove “Powered by Blogger.” Attribution easily.

How to remove from your blogger blog
There are two way –
  1. Hide Subscribe to Atom links (Add CSS Code)
  2. Remove Subscribe to Atom links (Remove Code)

1. How to Hide Subscribe to Atom links from BlogSpot.com Blogs?

Step-1: Go to your blog Dashboard -> Template -> Edit HTML
navigate to HTML Editor

Step-2: Press Ctrl+F and  Find ]]></b:skin>
Read More »

How to Add Pure Javascript Smooth Back To Top Button To Your Blogger Blog



  In this Article I'm writing a detail tutorial on How to Add Smooth Back To Top Button only using JavaScript no Jquery required . It is very simple to do with just a few lines of code.View the demo to see it in action.

So here’s a tutorial of how to implement a smooth scrolling  back to top button only using JavaScript on your Blogger  blog.


Step-1


Go to Blogger Dashboard >> Template >> Edit HTML
In the code editor find for </b:skin> and put below CSS file to above </b:skin>

CSS

#scrolltotop {
        text-align: center
    }
    
    #scrolltotop {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        z-index: 99999999;
        background-color: rgba(232, 98, 86, 0.8);
        color: #eee;
        font-size: 22px;
        font-weight: bolder;
        line-height: 60px;
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
        padding-top: 2px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        border-radius: 50%;
    }
    
    #scrolltotop:hover {
        background-color: #888;
        opacity: 1 !important;
    }
    
    #scrolltotop.show {
        visibility: visible;
        cursor: pointer;
        opacity: 1
    }
    
    #scrolltotop.show-out {
        visibility: visible;
        cursor: pointer;
        opacity: .5;
    }
 

Step-2


Find </body> tag and put these html code.

HTML
 
<div id="scrolltotop"><span>&#8679;</span></div>
 
You can also change Arrow  using HTML entities: Here you'll find some HTML arrow codes, arrow characters and entities

Step-3


Have you pasted HTML code now paste the script function below html tag you have pasted in step-2 and above which </body> tag
 
JAVASCRIPT

 <script type="text/javascript">
//<![CDATA[
    window.addEventListener("load", function() {
        scrollTo = function(element, to, duration) {
            var start = element.scrollTop,
                change = to - element.scrollTop,
                currentTime = 0,
                increment = 20;

            var animateScroll = function() {
                currentTime += increment;
                var val = Math.easeInOutQuint(currentTime, start, change, duration);
                element.scrollTop = val;
                if (currentTime < duration) {
                    setTimeout(animateScroll, increment);
                }
            };
            animateScroll();
        };
        var toptoback = document.getElementById("scrolltotop");
        document.addEventListener('scroll', function() {
            (document.body.scrollTop > 100) ? toptoback.className = 'show': toptoback.className = '';
            if (document.body.scrollTop > 1000) {
                toptoback.className = 'show-out';
            }
        });
        toptoback.addEventListener('click', function() {
            scrollTo(document.body, 0, 3000)
        });

        Math.easeInOutQuint = function(t, b, c, d) {
            if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
            return c / 2 * ((t -= 2) * t * t * t * t + 2) + b;
        };
    });
//]]>
</script>

The Arrow I am using is HTML entity so make sure that tags have in your blogger template after opening tag.
Read More »

Last Updated:    Friday, July 29, 2016

How to add JavaScript in Blogger?

 

JavaScript offer a lot of advantage to make your blog better. JavaScript is one of the easiest and effective scripting language which can be used to extend the functionality of your web site. There are many different uses of selecting JavaScript as a scripting language especially on your Blogger account as it will then possess the capacity of extending the functionality to other websites which are using the third party scripts amongst others.

JavaScript is executed directly on the client side which would mean that the code that is needed to be executed on the user’s processor instead of the web server which means that it will save a lot of bandwidth and unnecessary strain on the server. The language is very easy to learn and consists of many things such as syntax which is v ery close to the English. It is used in the DOM model which provides many prewritten functionalities for various objects on the page making.

With JavaScript you can also add the third party add-ons like the Grease monkey which can enable the JavaScript developer to perform the scripts that can be executed on desired pages. If you require a website to display a certain feature the it can be initiated.

If you are wondering how to add JavaScript to your blogger, then here is a detailed process that you can follow.

When you are adding JavaScript code to the template, many different kinds of XML errors are faced such as line 768, column 20, Error parsing XML and the content of the element should consist of well-formedcharacters’ mark ups and data. These kind of errors usually occurs when JavaScript code is not formed perfectly or when the code is not written by the developer himself.

Thing that Should Be Avoided

When you are planning to install a JavaScript code into the blogger, you should make sure that the script tags are used in a effective manner. Most of the times one can forget to completely copy the script which can end up showing an error.

How to Correctly Insert the Code in the Blogger?

If you want to add the script in the blogger, then it’s very simple. All you have to do is visit Blogger.com and in the Template section click on the edit HTML option. Not it will be dependent as to where you want to paste the JavaScript code but anyhow, to add the code above you should use the <\head> tag. This is the place where all the technical stuff is mostly present.

Once the script is accurately included your format hit the "Spare Template" catch, and this you would not confront any blunders. Which implies that the JavaScript is accurately included your blogger layout.

We trust this instructional exercise has helped you in figuring out how to appropriately include JavaScript codes in blogger. Tell us about your experience? On the off chance that you have confronted such blunders as well. Don't hesitate to leave any blunder underneath that you are confronting while adding new codes to your format.

Author Bio: - Vinod kardam is a tech enthusiast and he is a programming expert. He is sharing Amazon India coupons here so that he can spread technology.
Read More »

HTML Code Encoder