Complete the code to start an XML sitemap with the correct XML declaration.
<?xml version=[1] encoding="UTF-8"?>
The XML declaration starts with version="1.0" to specify the XML version used.
Complete the code to open the root element of an XML sitemap.
<[1] xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
The root element of an XML sitemap is urlset, which contains all URL entries.
Fix the error in the URL entry by completing the tag for the page location.
<url>
<loc>[1]</loc>
</url>The
Fill both blanks to add the last modification date and change frequency for a URL entry.
<url>
<lastmod>[1]</lastmod>
<changefreq>[2]</changefreq>
</url>The
Fill all three blanks to complete a URL entry with priority, last modification date, and change frequency.
<url>
<priority>[1]</priority>
<lastmod>[2]</lastmod>
<changefreq>[3]</changefreq>
</url>The