Create SEO-friendly XML & HTML Sitemaps Instantly
A sitemap is a file that lists website pages and content in machine-readable format. There are two main types:
XML Sitemap Example:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://example.com/</loc>
<lastmod>2024-01-01</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
</urlset>
HTML Sitemap Example:
<!DOCTYPE html>
<html>
<head>
<title>HTML Sitemap</title>
</head>
<body>
<h1>Website Pages</h1>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
</ul>
</body>
</html>