<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.example.com/page1</loc>
<lastmod>2024-06-06</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://www.example.com/page2</loc>
<lastmod>2024-06-05</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://www.example.com/page3</loc>
<lastmod>2024-06-04</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
</urlset>
=========================================================================
In this example:
- `<urlset>` is the root element of the sitemap.
- Each `<url>` element represents a URL on your website.
- `<loc>` contains the URL of the page.
- `<lastmod>` specifies the last modification date of the page. This is optional.
- `<changefreq>` indicates how frequently the page is likely to change. Possible values are "always", "hourly", "daily", "weekly", "monthly", "yearly", and "never".
- `<priority>` indicates the priority of the page relative to other pages on the site. The value ranges from 0.0 to 1.0, where 1.0 is the highest priority. This is optional.
You can include additional `<url>` elements for each page on your website, following the same structure. Make sure to replace the example URLs, last modification dates, changefreq, and priority values with your actual website data.