Level 1
13.2 Provide metadata to add semantic information to pages and sites.
Priority 2
13.2 Provide metadata to add semantic information to pages and sites.
Priority 2
13.2 Provide metadata to add semantic information to pages and sites.
2.4 Navigable: Provide ways to help users navigate, find content, and determine where they are.
Success Criteria 2.4.2 Page Titled (A)
2.4 Navigable: Provide ways to help users navigate, find content, and determine where they are.
Success Criteria 2.4.2 Page Titled (A)
2.4 Navigable: Provide ways to help users navigate, find content, and determine where they are.
Success Criteria 2.4.2 Page Titled (A)
title element.
title element.
title element must be present in head section of document.
title element to the head section of your document.
<title>A Story About Dogs</title>
head element for the presence of a title element.title element.title element within the head section of the content.title element is present.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #50.2 - Negative</title> </head> <body> </body> </html>
title element is missing.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> </head> <body> </body> </html>