Create important pages, headers and footers in Blogger website in this Method

 Create important pages, headers and footers in Blogger website in this Method








Hello friends, welcome to my website. In the previous post, we learnt how to set the theme and logo in our blogger. Today, I will tell you the process beyond that. In this, I will teach you to create some important pages which follow Google's policy and guidelines.

Without creating important pages, we cannot take our website forward and we will not be able to get that website approved for Google Adsense. Therefore, I will teach you to create some important pages. Along with this, I will also tell you how to set the header and footer of the website.
 

Things You Will Need

  • N/A 

Method

To create a header, first of all, you have to go to the blogger dashboard of your website. After that, you have to click on the setting option and you have to enter the title and description of the blog properly. After that, you have to go to your blogger dashboard again and then click on the layout option. In the layout option, there is a header option. You have to edit it and enter the title and description of the blog properly.

Now your header is ready. Some websites have the option of footer in the theme layout itself but in your case, if the option of footer is not there in the theme layout, then you have to go to the blogger dashboard again and click on the theme option, then click on the arrow option and click on the Edit Html option. As soon as you click on the Edit Html option, the coding will appear in front of you which is a part of the website. In this, you have to scroll down to the bottom and go to the footer option which you will find at the last.

If you are doing this on a computer, then you can search for the footer directly. Press Ctrl + F on the keyboard and search for the footer which will bring up your footer.

If you still do not find the footer, then you have to scroll down and you will find it at the last.

In the footer, the name of the person who designed the theme is put. You have to remove that name and put the name of your website and the year for which you have your copyright claim, so that your footer will look like a professional website.
Now our header and footer are ready.

Now I will teach you how to create important pages. To create a page, you have to click on the pages option. In this, you have to click on the + New Page option and enter the name of the page. You have to put a disclaimer in the disclaimer. There are many websites which create a disclaimer according to your website and give it to you. You can also create a disclaimer according to your choice.

There are some important pages, whose names I will tell you, you have to create them.

1. Disclaimer

2. Cookies

3. Terms and Conditions

4. Privacy Policy

5. Contact Us

6. About Us

7. Site Map: - You can insert the site map page by copying the code given below. You have to copy the code I have inserted below and put the URL of your website in place of my website.
 
 
<script type="text/javascript">

var postTitle = new Array();
var postUrl = new Array();
var postPublished = new Array();
var postDate = new Array();
var postLabels = new Array();
var postRecent = new Array();
var sortBy = "titleasc";
var numberfeed = 0;

function bloggersitemap(a) {
    function b() {
        if ("entry" in a.feed) {
            var d = a.feed.entry.length;
            numberfeed = d;
            ii = 0;
            for (var h = 0; h < d; h++) {
                var n = a.feed.entry[h];
                var e = n.title.$t;
                var m = n.published.$t.substring(0, 10);
                var j;
                for (var g = 0; g < n.link.length; g++) {
                    if (n.link[g].rel == "alternate") {
                        j = n.link[g].href;
                        break
                    }
                }
                var o = "";
                for (var g = 0; g < n.link.length; g++) {
                    if (n.link[g].rel == "enclosure") {
                        o = n.link[g].href;
                        break
                    }
                }
                var c = "";
                if ("category" in n) {
                    for (var g = 0; g < n.category.length; g++) {
                        c = n.category[g].term;
                        var f = c.lastIndexOf(";");
                        if (f != -1) {
                            c = c.substring(0, f)
                        }
                        postLabels[ii] = c;
                        postTitle[ii] = e;
                        postDate[ii] = m;
                        postUrl[ii] = j;
                        postPublished[ii] = o;
                        if (h < 10) {
                            postRecent[ii] = true
                        } else {
                            postRecent[ii] = false
                        }
                        ii = ii + 1
                    }
                }
            }
        }
    }
    b();
    sortBy = "titledesc";
    sortPosts(sortBy);
    sortlabel();
    displayToc();
}

function sortPosts(d) {
    function c(e, g) {
        var f = postTitle[e];
        postTitle[e] = postTitle[g];
        postTitle[g] = f;
        var f = postDate[e];
        postDate[e] = postDate[g];
        postDate[g] = f;
        var f = postUrl[e];
        postUrl[e] = postUrl[g];
        postUrl[g] = f;
        var f = postLabels[e];
        postLabels[e] = postLabels[g];
        postLabels[g] = f;
        var f = postPublished[e];
        postPublished[e] = postPublished[g];
        postPublished[g] = f;
        var f = postRecent[e];
        postRecent[e] = postRecent[g];
        postRecent[g] = f
    }
    for (var b = 0; b < postTitle.length - 1; b++) {
        for (var a = b + 1; a < postTitle.length; a++) {
            if (d == "titleasc") {
                if (postTitle[b] > postTitle[a]) {
                    c(b, a)
                }
            }
            if (d == "titledesc") {
                if (postTitle[b] < postTitle[a]) {
                    c(b, a)
                }
            }
            if (d == "dateoldest") {
                if (postDate[b] > postDate[a]) {
                    c(b, a)
                }
            }
            if (d == "datenewest") {
                if (postDate[b] < postDate[a]) {
                    c(b, a)
                }
            }
            if (d == "orderlabel") {
                if (postLabels[b] > postLabels[a]) {
                    c(b, a)
                }
            }
        }
    }
}

function sortlabel() {
    sortBy = "orderlabel";
    sortPosts(sortBy);
    var a = 0;
    var b = 0;
    while (b < postTitle.length) {
        temp1 = postLabels[b];
        firsti = a;
        do {
            a = a + 1
        } while (postLabels[a] == temp1);
        b = a;
        sortPosts2(firsti, a);
        if (b > postTitle.length) {
            break
        }
    }
}

function sortPosts2(d, c) {
    function e(f, h) {
        var g = postTitle[f];
        postTitle[f] = postTitle[h];
        postTitle[h] = g;
        var g = postDate[f];
        postDate[f] = postDate[h];
        postDate[h] = g;
        var g = postUrl[f];
        postUrl[f] = postUrl[h];
        postUrl[h] = g;
        var g = postLabels[f];
        postLabels[f] = postLabels[h];
        postLabels[h] = g;
        var g = postPublished[f];
        postPublished[f] = postPublished[h];
        postPublished[h] = g;
        var g = postRecent[f];
        postRecent[f] = postRecent[h];
        postRecent[h] = g
    }
    for (var b = d; b < c - 1; b++) {
        for (var a = b + 1; a < c; a++) {
            if (postTitle[b] > postTitle[a]) {
                e(b, a)
            }
        }
    }
}



function displayToc() {
    var a = 0;
    var b = 0;
    while (b < postTitle.length) {
        temp1 = postLabels[b];
        document.write("");
        document.write('<div class="post-archive"><h4>' + temp1 + '</h4><div class="ct-columns">');
        firsti = a;
        do {
            document.write("<p>");
            document.write('<a " href="' + postUrl[a] + '">' + postTitle[a] + "");
            if (postRecent[a] == true) {
                document.write(' - <strong><span>New!</span></strong>')
            }
            document.write("</a></p>");
            a = a + 1
        } while (postLabels[a] == temp1);
        b = a;
        document.write("</div></div>");
        sortPosts2(firsti, a);
        if (b > postTitle.length) {
            break
        }
    }
}

</script>

<script src="https://www.nksmethods.com//feeds/posts/summary?alt=json-in-script&amp;max-results=9999&amp;callback=bloggersitemap" type="text/javascript"></script>


You have to put this code in the Html View of the page and then save it. Now all your important pages are ready. You have to put these pages on the homepage of your website so that it ranks in Google and any viewer who sees your website can read these things easily. For this, you have to go to the blogger's dashboard again and click on the layout option. In the layout, you have to click on the Add A Gadget option. In the gadget option, you will see the option of pages. You have to click on the pages option and add all the pages one by one by clicking on the Add A New Item option and save the gadget of this page.

After saving, as soon as you refresh your website again or view it again, this page gadget will start appearing on the homepage of your website.

Now the important pages and header and footer for our website are ready. Now in the next post I will teach you to submit your website to Google Search Console so that your website gets maximum views and your website can rank in Google.
 
 
 


Another important thing, if you like this post of ours, please share it with your friends. Thanks.

Type Here Any Comments & Suggestions ...

Translate

Contact Form

Name

Email *

Message *