Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:

Beautiful Simple Blogger Email Subscription Box

Beautiful Simple Blogger Email Subscription Box



Emails are best source for getting traffic or visitors for blog.And also a well source of creating a good readership. I am sharing a Beautiful Simple Blogger Email Subscription Box which can be added below of every post.This email subscription box is very simple with wooden brick background and hover effect.



                                                    See Demo



Beautiful Simple Blogger Email Subscription Widget


Step No 1
  • Go to your blogger account.
  • Go to Template ==>Edit HTML
  • Now Search ]]></b:skin>
  • And paste below code above it.

/***** Subscribe widget from http://www.www.matrixar.com start*****/
.subscribe_outer4 { background: url("http://us.cdn3.123rf.com/168nwm/markusgann/markusgann1009/markusgann100900025/7697081-an-image-of-a-beautiful-old-wood-background-seamless-texture.jpg") repeat scroll 0 0 transparent; margin: 0 -10px; padding: 5px 0; }.subscribe_wrapper4 { background: url("http://us.cdn3.123rf.com/168nwm/markusgann/markusgann1009/markusgann100900025/7697081-an-image-of-a-beautiful-old-wood-background-seamless-texture.jpg") repeat scroll 0 0 #333333; padding: 38px 50px 18px 38px; color: #fff; text-shadow: 0px 2px 3px #666;font-size: 16px; font-weight:bold; line-height: 20px; text-align:justify; }#avdhootEmailsub4 { display: block; clear: both; margin: 10px 0; }.emailText4 { background: url("http://i1314.photobucket.com/albums/t576/trickycafe/email_zpsba22e644.png") no-repeat scroll 10px center #fff; padding: 10px 40px; color: #444; margin: 0 0 15px; width: 70%; text-decoration: none; border: 1px solid #D3D3D3; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; border: 0; box-shadow: inset 0 0 3px rgba(0, 0, 0, .05); -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, .05); -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .05); }.emailButton4 { background: #000000; background: linear-gradient(top, #000000 0%, #0c0c08 100%); background: -moz-linear-gradient(top, #000000 0%, #0c0c08 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #0c0c08)); background: -webkit-linear-gradient(top, #000000 0%, #0c0c08 100%); border: 0; color: #fff; cursor: pointer; padding: 10px 40px; text-shadow: 1px 1px 0 rgba(0, 0, 0, .4); font-weight:bold; width: 100%; font-family: "Droid Sans","Lucida Grande",Tahoma,sans-serif; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }.emailButton4:hover { background: #b50b42; background: linear-gradient(top, #b50b42 0%, #cd0c4b 100%); background: -moz-linear-gradient(top, #b50b42 0%, #cd0c4b 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b50b42), color-stop(100%, #cd0c4b)); background: -webkit-linear-gradient(top, #b50b42 0%, #cd0c4b 100%); }
/***** Subscribe widget from http://www.www.matrixar.com end*****/

Step No 2
  1. Now Go to Layout ==> Add a  Html/Java script gadget. 
  2. Then Add the following code.

    /***** Subscribe widget from http://www.www.matrixar.com start*****/<div class="subscribe_outer4"><div class="subscribe_wrapper4"><h2><center><font size='5' color='white'>Subscribe Us</font></center></h2><hr width="100%" />
    <p><font size='4'>Get New Articles Straight To Your Inbox By Submitting Your Email ID Below</font></p><br/><div id="avdhootEmailsub4"><form action="http://feedburner.google.com/fb/a/mailverify" method="post" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=YOURID', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" target="popupwindow"><input name="uri" type="hidden" value="YOURID" /><input name="loc" type="hidden" value="en_US" /><input class="emailText4" name="email" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Enter your email...&quot;;}" onfocus="if (this.value == &quot;Enter your email...&quot;) {this.value = &quot;&quot;}" type="text" value="Enter your email..." /><br/><br/><input class="emailButton4" border='3' title="F4U ONLINE COURSES" type="submit" value="Subcribe Now" size='50px' /></form></div></div></div>/***** Subscribe widget from http://www.www.matrixar.com end*****/

    Instructions:


    1. If you want to change the color of 'Subscribe Us',kindly change yellow color code
    2. If you want to change the text written in box change the green color text.
    3. You can insert your feed burner id in the place of 'YOURID'
    4. You can insert your desired title in the place of F4U ONLINE COURSES

    Note:
    If you find any problem related to our topic 'Beautiful Simple Blogger Email Subscription Box' then feel free to comment or contact us.

    2013, By: Seo Master
    Seo Master present to you:
    secure system to protect your content. Some peoples try to copy our blog content without permission, You can restrict it with some java code like right click protection, copy protection etc. But some bloggers cant do that, because they provide some codes to peoples. If they apply that scripts visitors cant copy anything from blog. Now i share a trick for some tricky way to restrict copy from blog. This code help to add automatic link source when others copy a content from our Blog.. You can add this lik to your blog. Please follow below instruction…

    Log in to your Blogger account

    • Go to Design option--> Edit HTML

    • Find (CTRL+F)  </head> tag.

    • Copy the below code, and paste it above </head> tag.


    <script type='text/javascript'>
    function addLink() {
        var body_element = document.getElementsByTagName('body')[0];
        var selection;
        selection = window.getSelection();
        var pagelink = "<br/><br/> Original Content from: <a href='"+document.location.href+"'>"+document.location.href+"</a><br/>Copyright © blog"; // change this if you want
        var copytext = selection + pagelink;
        var newdiv = document.createElement('div');
        newdiv.style.position='absolute';
        newdiv.style.left='-99999px';
        body_element.appendChild(newdiv);
        newdiv.innerHTML = copytext;
        selection.selectAllChildren(newdiv);
        window.setTimeout(function() {
            body_element.removeChild(newdiv);
        },0);
    }document.oncopy = addLink;
    </script>

    • Change RED colour with your own words.

    • Save it..



    2013, By: Seo Master
    Seo Master present to you:
    1. The power of internet

    The internet today is one of the most popular places for business to advertise in. With hundreds of millions of people visiting the internet on a daily basis from all over the world, you can be sure that advertising here will definitely increase your sales.

    Internet advertising reached $99 billion in 2012, says a study from GroupM, which they say is representing a 16.2% increase over the previous year and accounting to 19.5% of all advertising expenditure that same year, worldwide.

    According to internet world stats by the ICT the share of the world population using the internet has grown from 18% to 35% between 2006 and 2011. During this time the world population grew from 6.5 billion to 7 billion. The developing world has seen more of an increase in this 5 year study too, China increasing their share of internet users from 44% to 62% in the 5 years leading to 2011.


    2. About Facebook

    Today there are 62 million people using social media site Facebook. The social networking site is now considered to the biggest and most widely known social networking website existing. As the spread of internet users increases, worldwide, there is a constant increase in new users becoming Facebook members.

    Facebook is also one of the most evenly balanced social networking websites in terms of user age and gender.

    In a study of American SNS users by Pew Internet, Facebook had the second highest score for ages 50-65, at 19%, second only to LinkedIn at 23% and higher then Twitter at 13%.

    The study also says Facebook is used by 92% of all SNS (social networking sites) users, followed by MySpace at 29%. The interesting fact is though that people engage more on Facebook every day, some 52% in-fact, that’s higher then Twitter at 33% and far more frequent then MySpace 7% and LinkedIn 6%. Another way of looking at it is Facebook is the premium place for your company to showcase, advertise and network with their audience.

    Facebook’s overall market research data suggests it is the most universal social networking site and it has the best results for users’ daily visits. MySpace and LinkedIn by comparison are only occasional places users visit.


    3. Advertising on Facebook

    Within your Facebook account you may set up a targeted advert. This may involve publishing your website URL, and attract new users or likes. You can set up event times with dates and places, such as summer concert. Each ad allows you to include a photo or a logo as a small icon.

    It’s easy to create a new advert, you just log into the home page, click on the bar on the right-hand side, and look for the section marked “Sponsored” where the ads appear. A link that reads “Create an Ad” appears to the side of the “Sponsored” link.

    Within the Create an Ad section, you can design and edit the look for the advertisement, with Facebook automatically creating a preview at the bottom of the pages, so you’ve got the assurance your advert will look great before proceeding forwards.


    Destination

    In the Facebook Ad, you’ve got the Destination Tab and several options to direct the user. Then you can include the body of your ad copy and an image or log. Destinations include a website URL or your Facebook page, Sponsored Story is really a nice feature; you can choose to have either a Page “Like” Story, displaying to the user a friend who likes your page, with a “Like” call to action. Page Post Story shows the user the excerpt and image from your most recent Facebook post. The CTA here is to comment, “Like” and Share.

    Goals
    Facebook offers a range of other options for you as a company. You can select goals that cover the following:
    • Promote Page Posts, for specific pages you’ve created, increasing chances of reaching their targeted audience.
    • Get New Users, to target people that are likely to want to want what your website offers, sign up to newsletters, download your apps.
    • Increase Attendance, for when you have an event, target people who may find your conference or event relevant to them.
    • Get More Page Likes, when people like your page, they’re more likely to see your posts, and the more likes you have means that you have more people in the audience every time your posts are published on Facebook.
    User Filtering

    You can advertise to your demographic, using targeted marketing at your end user. This type of marketing is in smaller numbers, but with bigger and greater results, which are easier to manage for you as well!

    • Advanced tartgeting includes demographics, such as age and weather you want to choose men, women or both
    • Likes and interests allows you to advertise on the users’ pages who’ve publicised this date in their profile
    • Location permits you to choose a city, province or country for where you’d like to send your advert out to
    • Within the advanced targeting section you can choose to promote an advert for people on their birthdays, what languages they speak, education and relationship status

    Payment strategy

    Choose with either a pay per click (CPC) or pay per impression (CPM), which both have great potential to boost user awareness. In the Campaigns, Pricing and Scheduling section you can choose the currency you want to use to pay for ads, daily budget, and dates and times when you would like to appear.


    Finalizing your ad

     You will be required to do a final review of your ad before publishing, so you can check over your work, and have the chance to return to and edit any part of the ad you have designed. Then finally, you can check over your order, which you can pay for with credit card or PayPal. Now you’re away, you’ve created an advert and enhanced your chances of gaining more visitors and customers!


    4. What we’re doing at the company where I work

    Working within online marketing at The Genuine Gemstones Company, my business utilizes Facebook for online PR, for online marketing campaigns, getting the best of Facebook marketing for posts and advertising hand in hand.


    A new promotion for emerald rings on Gems TV gets sent out on a Thursday afternoon, and we need to get it to as many people as possible; with over 8,000 members and 4,027 likes on Facebook (and steady growing) we can have the best platform for our customers to see our ad campaign banner.

    Our brands Gems TV and Rocks TV are strong in the UK and USA respectively and our online marketing team over here consistently are working, planning and communicating. Facebook is one of our key areas we would like to grow, with more users, journalists, companies and bloggers engaging with us every day that leverages a wider spread of users and shares name, our quality, our services, using Facebook.

    2013, By: Seo Master
    Powered by Blogger.