How to create a sitemap page HTML javascript for blogger.com?

How to create a simple sitemap page for a website using JAVASCRIPT HTML?

A sitemap page in HTML typically consists of a structured list of links that represent the different sections or pages of your website. It helps users and search engines navigate through your site's content easily. Here's an example of how you can create a simple sitemap using HTM and JAVASCRIPT.

How to create a simple sitemap page for a website using JAVASCRIPT HTML? A sitemap page in HTML typically consists of a structured list of links that represent the different sections or pages of your website. It helps users and search engines navigate through your site's content easily. Here's an example of how you can create a simple sitemap using HTM and JAVASCRIPT.  How to create a simple sitemap page for a website using JAVASCRIPT HTML?    Example1:    <!DOCTYPE html>  <html lang="en">  <head>    <meta charset="UTF-8">    <title>Website Sitemap</title>  </head>  <body>    <h1>Website Sitemap</h1>        <ul>      <li><a href="index.html">Home</a></li>      <li><a href="about.html">About</a></li>      <li><a href="services.html">Services</a></li>      <li><a href="products.html">Products</a></li>      <li><a href="contact.html">Contact</a></li>    </ul>  </body>  </html>   In this example:  Replace index.html, about.html, services.html, products.html, and contact.html with the actual URLs or relative paths to your website's pages. The <ul> (unordered list) tag is used to create a bulleted list.  Each list item <li> contains an anchor <a> tag representing a link to a specific page of your website.  You can add more nested lists or adjust the structure to accommodate subsections or categories if your website is more complex.    Remember, a sitemap doesn't have to contain every single page; it's meant to give an overview of the site's structure and navigation. For larger websites, you might want to consider an XML sitemap for search engines as well. This HTML example is a basic representation for users to navigate through your site easily.   How to create a sitemap page HTML javascript for blogger.com? in this code, you need to replace the website URL  https://bloggercodingtips.blogspot.com/ with yours  Example2:    <link href='https://cdn.jsdelivr.net/gh/IamArpain/blogger-sitemap-generator-script/Script/arpain-sitemap-css.css' rel='stylesheet' type='text/css'/><br /> <style> /*  Any Custom Style to change default design  */ </style><br /> <br />  <div class="arpian-sitemap" id="arpian-sitemap">  <span class="loading">Load…</span>  </div>  <script>  var arpianSitemapData = { blogUrl: "https://bloggercodingtips.blogspot.com", // Blog URL Place your Blog Url to get Post Data without / at end of URL Example: https://bloggercodingtips.blogspot.com containerId: "arpian-sitemap", // Container ID activeTab: 1, // The default active tab index (default: the first tab) showDates: false, // `true` to show the post date showSummaries: false, // `true` to show the posts summaries numChars: 200, // Number of summary chars showThumbnails: false, // `true` to show the posts thumbnails (Not recommended) thumbSize: 40, // Thumbnail size noThumb: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAA3NCSVQICAjb4U/gAAAADElEQVQImWOor68HAAL+AX7vOF2TAAAAAElFTkSuQmCC", // A "no thumbnail" URL monthNames: [ // Array of month names you can use another Language Month If your blog is in other Language then English "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ], newTabLink: true, // Open link in new window? maxResults: 999, // Maximum post results 99999 cpreload: 0, // Load the feed after 0 seconds (option => time in milliseconds || "onload") sortAlphabetically: false, // `false` to sort posts by published date & true for sorting Alphabetically showNew: 7, // `false` to hide the "New!" mark in most recent posts, or define how many recent posts are to be marked newText: ' – <em style="color:red;">New!</em>' // HTML for the "New!" text }; </script> <br /> <script src="https://cdn.jsdelivr.net/gh/IamArpain/blogger-sitemap-generator-script/Script/arpain-sitemap.js"></script>             COPY  Output example:   Load…


Example1:


<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Website Sitemap</title>

</head>

<body>

  <h1>Website Sitemap</h1>

  

  <ul>

    <li><a href="index.html">Home</a></li>

    <li><a href="about.html">About</a></li>

    <li><a href="services.html">Services</a></li>

    <li><a href="products.html">Products</a></li>

    <li><a href="contact.html">Contact</a></li>

  </ul>

</body>

</html>


In this example:

Replace index.html, about.html, services.html, products.html, and contact.html with the actual URLs or relative paths to your website's pages.
The <ul> (unordered list) tag is used to create a bulleted list.

Each list item <li> contains an anchor <a> tag representing a link to a specific page of your website.

You can add more nested lists or adjust the structure to accommodate subsections or categories if your website is more complex.



Remember, a sitemap doesn't have to contain every single page; it's meant to give an overview of the site's structure and navigation. For larger websites, you might want to consider an XML sitemap for search engines as well. This HTML example is a basic representation for users to navigate through your site easily.


How to create a sitemap page HTML javascript for blogger.com?

in this code, you need to replace the website URL  https://bloggercodingtips.blogspot.com/ with yours

Example2:




Output example:


Load…

Comments :

Post a Comment