test2

Wednesday, December 25, 2019

How To Add Automatic Table of Contents in Blogger Post - TOC Plugin For Blogger

Table of content plugin is a special SEO optimization tool for bloggers and site owners, which will help the visitors to give a quick look at your post or article and it also helps you with a high ranking in Google Search engine for your post or article as Table of Contents highlight your whole post.
As a demo, you can look at the Table of Contents shown in this post.

    If your blog post is too long, it is necessary to add a Table of Contents in it. If you don't add a table of Content, then visitors who newly Visit your blog impressed by the title of your post shown in the search Engine result will skip your post instead of going through lengthy post. And will search for a related post on the Internet. Therefore, to increase SEO performance, it is necessary to add a table of content to your blogger blog.

    What is the Table of Contents?

    The Table of Contents is the list of Headers used in a post or article that is automatically generated by a script. It gives readers an overview of a post or article that about what your article or post is. Table of content also helps readers to jump to the particular point of a post or article by clicking on the highlighted text in the table of contents. 

    How TOC Plugin Works?

    TOC automatically generates a unique identity for every heading used under a post or article and gathers them to a paragraph in the form of a Table. When a reader reads your post or article he / she can easily go through with all the headings or subheadings under your long post or article and will easily move towards headings he or she wants to read instead of the full Article.

    Table of Contents helps to improve SEO of your blog

    At very long posts TOC just does not help only the users or readers of your blog, but it also helps in increasing the ranking and improves CTR (Click-Through Rates) and by this, you will get dramatic improvements in SEO of your blog.

    Where should Table of Contents appear in the blog post?

    You should place the Table of Contents after the first paragraph of your post or after the introduction your post which helps the readers to navigate easily to the particular point of your post.

    Process to Install TOC Plugin and Activate it in Blogger Post

    This automatic TOC plugin has two processes to add an automatic Table of Contents in your blogger post. The first process is to install TOC plugin into your blogger them html and in the second process you will learn how to activate this plugin on your blogger desired post where you want to show Table of Content in the post.

    How to Install TOC Plugin In Blogger Theme

    Step1: Edit Blogger Theme HTML

    Login to your blogger and go to the Dash-board of your blogger and then click on the Themes. It will open a new page. At the right corner of this page, you will see three dots, click on these dots and then Edit HTML.
    edit html theme blogger

    Step2: Paste TOC Plugin Code Above </head> Tag

    Now in theme HTML press Ctrl + F button of your keyboard and type </head> in the search box to find closing head tag </head> and copy and paste the code given below above the closing head tag </head>. Same as the screenshot given below:

    <link href='http://fortawesome.github.io/Font-Awesome/assets/font-awesome/css/font-awesome.css' rel='stylesheet'/>           
    <link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>

    <script type='text/javascript'>
    //<![CDATA
    function mbtTOC() {var mbtTOC=i=headlength=gethead=0;
    headlength = document.getElementById("post-toc").getElementsByTagName("h2").length;for (i = 0; i < headlength; i++)
    {gethead = document.getElementById("post-toc").getElementsByTagName("h2")[i].textContent;document.getElementById("post-toc").getElementsByTagName("h2")[i].setAttribute("id", "point"+i);mbtTOC = "<li><a href='#point"+i+"'>"+gethead+"</a></li>";document.getElementById("mbtTOC").innerHTML += mbtTOC;}}function mbtToggle() {var mbt = document.getElementById('mbtTOC');if (mbt .style.display === 'none') {mbt .style.display = 'block';} else {mbt .style.display = 'none';}}
    //]]>
    </script>
    toc code in blogger theme

    Note:

    Above code will work for h2 headings, if your post contains h3 headings then replace h2 with h3 where h2 is highlighted in above code.
    In blogger h2 stands for headings and h3 stands for subheadings.

    Step3: Paste TOC CSS Code Above ]]></b:skin> Tag

    Now again type ]]></b:skin> in the search box and copy the code give below and paste it above ]]></b:skin> to add TOC CSS in Blogger theme and click save.

    .mbtTOC{border:5px solid #f7f0b8;   
    box-shadow:1px 1px 0 #EDE396;
    background-color:#FFFFE0;
    color:#707037;
    line-height:1.4em;
    margin:30px auto;
    padding:20px 30px 20px 10px;
    font-family:oswald, arial;display: block;
    width: 70%;}
    .mbtTOC ol,.mbtTOC ul {margin:0;padding:0;}
    .mbtTOC ul {list-style:none;}
    .mbtTOC ol li,.mbtTOC ul li {padding:15px 0 0;
    margin:0 0 0 30px;font-size:15px;}
    .mbtTOC a{color:#0080ff;text-decoration:none;}
    .mbtTOC a:hover{text-decoration:underline; }
    .mbtTOC button{background:#FFFFE0;
    font-family:oswald, arial; font-size:20px;
    position:relative;
    outline:none;cursor:pointer; border:none;
    color:#707037;padding:0 0 0 15px;}
    .mbtTOC button:after{content: "\f0dc";
    font-family:FontAwesome; position:relative;
    left:10px; font-size:20px;}
    how to install toc plugin in blogger theme

    Step4: Replace <data:post.body/> tag

    Now again press CTRL+F button and find <data:post.body/> tag and replace with the given code below. If you find <data:post.body/> code more then 1 time then replace all with the give code below:

    <div id="post-toc"><data:post.body/></div> 
    post body tag

    replace data post body tag
     After adding these codes, save your theme. If theme saving show update fail then reload page and do all steps carefully and save after every step.
    edit theme and save

    How To Add Table of Contents in a Particular Post

    Now go to the post in which you want to add Table of Contents. Edit your post as HTML and Copy the code given below and paste it in the post after first paragraph or where you want to show Table of Contents.

    Code:

    <div class="mbtTOC"> 
        <button onclick="mbtToggle()">Table of Contents</button> 
        <ol id="mbtTOC"></ol
        </div>
    Table of contents in blogger post
    If your headings has already numbered then replace 'ol' with 'ul' in the above script. You can also change the word 'Table of Contents' with any word you like.

    Activate TOC Plugin

    It is final step. In this step we are going to activate TOC plugin in our post. To activate TOC plugin copy the give code below and paste it at end of your post HTML. Now hit enter button and check out, How your Table of Contents Look.

    <script>mbtTOC();</script>

    Look at the screenshot.
    toc plugin script

    How To customize Your TOC Plugin

    You can customize TOC Plugin according to your wish with the help of CCS code (Step3 of this post). To customize TOC Plugin Look the steps given below.
    • To change the background color of  the TOC edit #ffffe0 at line no. 3.
    • To change the boarder color of the TOC box edit #f7f0b8 at line no. 1.
    • To change the border thickness of TOC box edit 5px at line no. 1.
    • To change the font color of the TOC headline text edit #707037 at line no. 20.
    • To change the anchor link color edit #0080ff at line no. 14
    • To change the font size of anchor link edit 15 px at line no. 20.
    • To change the font size of the TOC headline text edit 20 px at line no. 23.
    • To change the size of the TOC box change width edit 70% inline 9.

    Features of TOC Plugin

    There are many features of TOC plugin Like:
    • SEO Friendly
    • Mobile and Desktop Responsive
    • Do not increase page loading time
    • Fast Loading
    • Toggle button
    • Show in the Location you choose
    • Add unique id in each heading
    And many other feature like this.
    I hope you will appreciate this topic and will enjoy benefits of TOC.
    If you have any problem or question or suggestion, comment us now. We are always here to help you. Sorry for bad English.
    Your Feedback's are important for us. Thanks

    Tuesday, December 24, 2019

    Telenor Free Internet Tricks 2020

    Hello Friends Assalam-O-Alaikum! How are you? Today we will share Telenor free internet trick with you. The methods we will discuss in this post are legal and presented by Telenor 4G for its beloved users. Telenor keeps announcing free internet offers to reward its customers. Telenor is trying to prove to its users that it is a good telecommunication service provider. As we know, nowadays, a competition started between telecommunication companies to attract users. That's why Like other Network provider companies it is also trying to attract users by announcing new offers day by day. Today we will discuss these offers. So that everyone who doesn't know about these offers could know and enjoy these offers.


      Some important information about Telenor

      Telenor is basically the telecommunication company of Norway. It is one of the World's Largest Mobile Telecommunication Companies with operations worldwide, focus in Scandinavia, Eastern Europe and Asia.Telenor started off in 1855 as a state-operated monopoly provider of telegraphy services named telegrafverket. And later on it stepped up to telephone service and then Deregulation and internationalization. Further it started operations like Mobile, Fixed line, Research, Machine to Machine, Broadcast etc. Telenor and Huawei conducted a successful test of 5G with 70 Gbit/s speeds in Lab environment. Telenor is providing its services in Norway, Denmark, Finland, Sweden, Bangladesh, Malaysia, Myanmar, Pakistan, Thailand, Bulgaria, Hungary, India, Montenegro, Serbia, Russia, Ukraine, Italy etc. It has partnership with VEON.

      Telenor in Pakistan

      In Pakistan, Telenor got a GSM license in 2004 and launched in 2005. Telenor Pakistan, branded as Telenor 4G, is a Pakistani mobile data and digital services provider owned by the Norwegian company Telenor Group. Telenor Pakistan has a total subscriber base of 45 million, with 28% cellular market share in Pakistan and over 1900 employees. Telenor company made an investment of more than $3.5 billion in Pakistan and paid over PKR 300 billion to the country's national exchequer in the form of direct and indirect taxes. At the first time, Telenor launched its services commercially in Karachi, Islamabad and Rawalpindi on 15 March 2005. As the time passed, it expanded its services in other big cities of Pakistan and now it is available in every city and village of Pakistan.
      This is the short description of Telenor history. If you want to know a complete history of Telenor, you can search on google about Telenor history. Lets we walk towards our topic about Telenor Free Internet.

      Telenor Free Internet with My Telenor App

      My Telenor app allows users to manage their packages, i.e. activate and deactivate packages. On My Telenor app users can buy internet, SMS and call bundles with discounts. My Telenor offers to view history calls, SMS and data usage. Also, we can check Remaining data, minutes and SMS details, and also we can check our remaining balance with my Telenor app. Nowadays, Telenor Launched an offer that every user whoever will download, install, and create my Telenor account will be rewarded with 2 GB free 4G data.

      • Go to play store and search My Telenor app. Download and install it.
      • Open My Telenor app and create an account with your Telenor sim.
      • You will be rewarded with 2GB free internet.
      With my Telenor app, you can also claim a daily free social pack. And also you can earn free balance and mbs by doing quiz by Telenor and Answering the questions on My Telenor app.

       Telenor Free 4G Connection offer

      Telenor has launched an amazing offer for its customers to enjoy free 4G internet for a week. With free 4G connection offer every prepaid Telenor customer can enjoy 3GB internet for 7 days. To get this amazing and mind-blowing offer for free follow these steps.
      • Dial *655# to get this offer.
      • Charges: Rs 0.00
      • Free data up to 3GB.
      • Data type 4G
      • Offer validity: 7 days only.
      • To check remaining data volume dial *999# 
      This offer is available for all 4G prepaid Telenor customers and to avail this offer your Telenor sim card should be in an active state, otherwise you cannot enjoy this offer.

      Telenor Free WhatsApp offer

      Telenor has launched an amazing mind-blowing offer for its customers. With this offer, every Telenor customer will use free WhatsApp for 1 month. We know the importance of this offer. Telenor has made it easy for us to contact our beloved ones for free. With this offer, we will get 2GB free WhatsApp data for the whole month. That is amazing and wonderful. To get this wonderful offer follow these steps:
      • Dial *247# to get this offer to enjoy free WhatsApp.
      • Charges: Rs 0.00
      • Free data up to 2GB. (WhatsApp only)
      • Data type: 4G
      • Offer validity: 1 month.
      • To check remaining data volume dial *999#
      This wonderful offer is available for all Telenor prepaid customers and to avail this amazing offer you Telenor sim card should be in an active state otherwise you cannot get this amazing free WhatsApp offer.

      Telenor Free Balance offer

      We all know how much we have paid the tax to telecommunication companies on balance recharge. But now the government announced to reduce these taxes. That's why Telenor and other network companies are giving these tax back in form of balance. Telenor has launched code to claim this balance. To claim this balance for free follow these steps:
      • To get free balance dial *949#
      • Charges: Rs 0.00
      • Balance will Expire in 45 days.
      • To check free balance dial *200#
      This offer is available to all telenor prepaid and postpaid customers.

      Free Internet and Balance with Easypaisa App

      Easypaisa app is a Telenor banking app for Telenor customers to use the benefits of banking on their phone. Easypaisa app support payment sending and receiving. With Easypaisa app, you can send money to anyone and any bank. And also you can receive money from anyone and any bank You can withdraw your money from Easypaisa account by going to any Easypaisa retailer merchant. With Easypaisa app, you can buy a call, SMS and data bundles for Telenor and other networks like Zong, Ufone, etc. You can also send balance on your any network sim. You can also pay your utility bills , electricity bills, and gas bills with Easypaisa app. You will get discounts and cashback when you will pay your restaurant’s bill or will buy anything from restaurants via Easypaisa app. Easypaisa also rewards its customers when they install and sign up on Easypaisa app. On sign up you will get Rs 100 for free and on making recharge of Rs 100 , will get Rs 50 cashback. And also on the installation of Easypaisa will get 500mb for free. You can also earn money by inviting your friends on Easypaisa app.
      To get Easypaisa offer follow these steps:
      • Go to Play Store and Search Easypaisa App. Download and install it.
      • Open Easypaisa app and sign up with your Easypaisa account. To open Easypaisa account dial *786# from your Telenor sim.
      • On successful sign up, you will receive Rs 100 for free in your Easypaisa account. Make Recharge of Rs 100 and get Rs 50 cashback. 
      • You will get 500mb gift on using Easypaisa app. 
      Another method to get free 1500 mb data and 1500 Telenor minutes for 1 month is deposit and maintain Rs 1000 in your Easypaisa account. You will get 50 mb and 50 minutes daily until 1 month without losing your money. It is an amazing offer for Telenor users.

      If you have any question or problem comment us, we are always here to help you. Sorry for bad English.
      Your Feedback's are important for us. . Thanks.

      Monday, December 23, 2019

      Jazz Free Internet Codes List Updated 2020

      Jazz is a good communication company in Pakistan. In 1994, they launched this network with a trademark name Mobilink, but later on its name changed to Jazz and it became a most promising. And with the time, they merged it with Warid telecommunication. Jazz is a No.1 Network that keeps rewarding its users with free internet data at different times. Jazz is popular in its users because of providing the free internet to its users.


        Today we will list down all USSD codes to avail/get free internet on jazz sim.
        So let's friends...... try these codes one by one on your Jazz/Mobilink sim and get rewarded with free internet.

        Jazz free 4G internet new code

        With this code you can get jazz 4G internet for 7 days up to 5GB and 100mbs of 3G. 4G 5GB data is only use-able on a 4G device and 3G MBS can be used on 2G, 3G and 4G devices.
        To get this offer for free:
        Dial *674#
        Validity: 7 days

        There is a bug in this offer, you can get it multi times by dialing this code again and again. Sometimes you may get a notification that you are not eligible for this offer but keep dialing this code again and again. You will must get it.

        Jazz Free WhatsApp on Every Call You Make

        Jazz offers its users to use free WhatsApp on jazz when they make a call. Jazz rewards 25mb to its users on every call they make.

        Dial *225# to avail this offer.

        By dialing this code, you will receive 25 MB per call.
        This offer is valid for all jazz customers.

        Jazz free 5GB 4G Internet 

        With this code, you can get 5GB free internet for 4G mobile only.
        To avail this offer dial *671*2#
        This offer is valid for 7 days and data can only be used on 4G handset only.
        Price: Rs 0.00

        Jazz Free 4G Offer 

        Jazz 4G loves to reward its users with free sources, i.e. free internet, free minutes, free SMS and free social packs, etc. And Jazz launched an offer to reward its users who are using 4G services with the Jazz Free 4G internet offer.
        To get jazz free 4G offer just dial *671*2#
        There are no charges for this offer;It is free of cost.
        By dialing this code, you will get 4G data for 24 hours (12am-12pm).
        With this offer, you can get upto 5GB free.
        Sometimes Jazz rewards 1GB, 2GB, 3GB, 4GB, and 5GB with this code.

         Jazz Sim Lagao Offer

        Dail *551# to activate the Jazz sim Lagao offer. You should must have Rs 0.01 in your Jazz sim to avail this offer. This offer is available on only those sim cards that are not used for the last 30 days. Offer details are:
        1. You will receive 1500 MBs for 60 days. You can't use these MBs during 9:00 pm to 1:00 am according to Jazz terms and conditions.
        2. You will receive 3000 Jazz/Ward minutes for 60 days. And can use only 50 minutes Daily except 6:00 pm to 10:00 pm according to Jazz terms and conditions.
        3. You will also receive 3000 SMS for all networks and all time for 60-days.
        4. For free minutes, they can charge you with Rs 0.17 per call according to Jazz terms and conditions.
        5. Note: Offer Bonus Volumes, activation charges, and validity limits can change according to changes in Jazz terms and conditions.

        Jazz Free Social Pack offer

        We all know that the importance of social media and its power. Social media turned this world into a globe village. On social media we can contact our family, friends and all over the world. Jazz launched a free social media offer for its customers as the need of time. So that everyone could stay in touch with their beloved ones and stay tuned with the latest news. With the Jazz social media offer, we can use Facebook and WhatsApp with their all features free for 1 month.

        To get free social pack offer dial *499#
        This offer is free of cost and there are no charges on this offer.
        This offer is valid for 1 month.

          Jazz free internet codes list

          • Dail *5555# and get Jazz 2/3/7 day Gift. This is the very popular code between Jazz users. You will be rewarded with 200/300/700 MBs, respectively. To check the remaining MBs Dail *116# for free.
          • Dail *836# and get the 3-day trial bundle for free. You will receive 500 MBS data with this offer for the next 3-days. To check the remaining MBs status, Dail *117*51*2# for free.
            • Dail *191# to activate Jazz new sim offer for free. You will receive 700 MBS, 700 SMS and 700 Jazz/Ward minutes for 7-days.
            • Dail *117*72*3# to activate a new 4G sim offer for free.
            • Dial *264# to activate Jazz 2G unlimited internet for free. To enjoy 2G internet, you should must have 2G handset, i.e. Java mobiles, etc.
            • Dial *463# for free internet on Jazz.
            • Dial *114*6# to activate the Jazz student social bundle for free. This social bundle works only in selected areas.
            • Dial *500# to get free internet with jazz device offer.
            • Dial *443*7# to check Jazz 4G sim status. If your sim is 4G, then Dial *443*30# to activate Jazz 4G sim offer for free. By Dialling this code, you will receive 4GB + 400 Jazz/ Warid Mins & 4000 SMS for 7-days for free.
            • Dial *826# for free internet on Jazz.
            • Dial *824# To get 500 MBS internet free for 3-days.
            • Dial *832# to get 500 MBs for free.
            • Dial *441*29# to get 1Gb internet for free.
            • Dial *441*25# to get 2000sms free for 30-days.
            • Dial *999# for free internet on Jazz.
            • Dial *825# for free internet.
            • Dial *117*9*3# to get 50GB free internet on the subscription of three MBB bundles.
            • Dial *117*91# to get up to 5GB internet for free.

            Note

            Try these codes with the zero balance to avoid any loss of balance. Jazz Keep Changing its terms and conditions. They can apply charges at any code given above. Restart your phone after activating any offer for better services.

            Your suggestions are important for us.

            Sunday, December 22, 2019

            How To Install Nova Launcher On Phoenix OS Step by Step Guide

            What is Phoenix OS?

            Phoenix OS is an android x86 based operating system to run androids on computers and Laptops. This is enhanced operating system based on the open source project of android x86 for computers that run on Intel x86 processors. Phoenix OS allows you to use android applications on computers including smart tablets and laptops. It allows you to run multiple applications at the same time having no problem. You can use these applications in Windows mode in full screen like Windows software's on Phoenix OS. It comes with
            Many features and built-in applications. It has a Stardust browser as a default browser. It has built-in CzKeymapping to play games and control their functions with mouse and keyboard. It is Best Emulator to Play Pubg Game and FreeFire Game with Key Mapping Controls and with no lagging of FreeFire and Pubg. Phoenix OS comes with many other features and built-in apps like music player, Calculator, Voice Recorder, Text Editor and File Manager. Its File Manager allows you to use your all disk drives on the phoenix OS even Windows drive.


              Why do we need to install Nova Launcher on Phoenix OS?

              As we know, that Phoenix OS comes with the Windows desktop mode. Where we can not use Gadgets and many other features of an android. To use Gadgets on Phoenix OS, we need to install Nova Launcher on Phoenix OS. After installing Nova Launcher on Phoenix OS, we can use all gadgets on it including PPP Widget. PPP Widget is used to use 3G Modems stick via USB on androids to access the Internet. To use PPP widget, we need root access on Phoenix OS and Androids.

              How To Install Nova Launcher On Phoenix OS?

              Phoenix OS does not allow us to install Launcher application on it. Installing External Launcher application is blocked to avoid its users from facing stability problems. But we will use a method to install Nova Launcher on Phoenix OS. We will extract system.sfs and system.IMG file to add Nova Launcher in the system.

              Requirements

              • Phoenix OS
              • APT Tool (Android Pc Toolbox)
              • Nova Launcher apk

              Method to Install Nova Launcher On Phoenix OS

              Follow these steps carefully to install Nova Launcher Phoenix OS.

              Method NO.1

              Install Nova Launcher using Android PC Toolbox APT

              1. Firs of all copy System.sfs file to "in" folder of APT (Android PC Toolbox)
              2. Open APT and Press any key to continue.

              When you will press any key, a new window will appear.



              3. Enter 1 in your choice section to unpack System.sfs of Phoenix OS. It will start unpacking process of System.sfs and will show you " Unpacking System.sfs Please wait" At success it will show you Done message and will create system. IMG file in "in" folder of APT. Now press any key to come back to a previous screen.

              4. Enter 2 in Your choice section to " Unpack System.img file" and Press Enter button of your Keyboard. It will start unpacking system.img file and will replace unpacked files in the unpack folder of APT. At success it will show Done message. Just Press Enter to continue and to return the previous screen.


              5. Now go to APT Folder and then unpack folder. Open system folder and then app folder. Now create a fold with name Nova and Paste Nova.apk inside this folder.

              Add Nova Launcher to System

              6. Now come back to the unpack folder and open fs_config.txt and system_statfile.txt copy paste these two lines in it below this line " system/app 0 0 755 "

              Add these lines in fs_config.txt and system_statfile.txt same as shown in the screenshot given below and save these.
              ---------------------------------------------------------------
              system/app/Nova 0 0 755
              system/app/Nova/Nova.apk 0 0 644
              ---------------------------------------------------------------



              Do not forget to save changes made in fs_config.txt and system_statfile.txt.

              7. After completing step 6 come back to APT and Enter 4 to repack system. IMG and hit Enter button.A new window will appear, then Enter 1 again to repack system.img (Phoenix OS). Now a new window will appear choose here size of system.img. Enter 2 in this section and press the Enter button. Wait until it shows the message done. Check out Screen shots given below.



              We have successfully added Nova Launch into Phoenix OS system.img file and repacked it. You can also repack it into system.sfs type by entering 3 in APT main window, but I think we do not need it.
              Now go to "out" folder of APT and copy system.img file and replace it in installed directory (where you have installed Phoenix OS) and Start your Phoenix OS. Check out Nova Launcher installed on Phoenix OS.
              You can add any other Launcher in this way.

              Need Help 

              Comment us now. We are always here to help you. Sorry for bad English.
              Your Feedback's are important for us..............Thanks

              Download Candy Crush Saga

                Special Feature • Easy and one of the most popular Android games. • Provides a huge number of stages and levels. • Different levels offer ...