Sitemap Drafting Tool

DWG № SM-0.9 · protocol sitemaps.org
output: sitemap.xml (UTF-8)

1 — URL Register

paste, then survey
Options — set automatically (changefreq: always · lastmod: today · base URL: auto-detected)
URLPriorityChangefreqLastmod
No URLs registered yet. Paste addresses above and add them to the register.

2 — Drafting Sheet

live render
The generated sitemap.xml will render here as you add URLs to the register.
URLs
0
Size
0 B
Drafted
Status
Empty

What is a sitemap XML?

Sheet notes · reference reading before you draft

A sitemap XML (usually a file named sitemap.xml) is a structured list of the pages on your website, written in a standard format that search engines can read. Think of it as the index sheet in a set of drawings: it doesn't replace the pages themselves, but it tells a crawler exactly what exists, where to find it, and which entries have changed recently.

Search engines like Google and Bing discover most content by following links, but that process can miss pages that are new, deeply buried, or poorly linked. A sitemap closes those gaps. It's especially useful for large sites, brand-new sites with few backlinks, sites with rich archives, and sites whose content changes often.

The format is defined by the open sitemaps.org protocol: one <urlset> element containing a <url> entry for every page. A single file may hold up to 50,000 URLs and weigh up to 50 MB uncompressed; bigger sites split their URLs across several files joined by a sitemap index.

Having a sitemap doesn't guarantee that every listed page gets indexed or ranks higher — it's a set of hints, not commands. What it does is make crawling more efficient, help new and updated content get discovered sooner, and give you a clean inventory of your own site. Once yours is drafted, upload it to your site's root folder, reference it from robots.txt, and submit it in Google Search Console and Bing Webmaster Tools.

<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/ schemas/sitemap/0.9"> <url> <loc>https://example.com/about</loc> <lastmod>2026-07-01</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url> </urlset>
<loc>
The page's full address. The only required field in every entry.
<lastmod>
When the page last changed, so crawlers can skip content that hasn't moved.
<changefreq>
A hint for how often the page tends to change — from always down to never.
<priority>
The page's importance relative to your other pages, from 0.0 to 1.0.