Tools, FAQ, Tutorials:
Missing XHTML 'title' Element
What Happens If the XHTML "title" Element is Missing?
✍: FYIcenter.com
XHTML 1.0 requires you write the title element inside the head element.
If you forget to include the title element, the XHTML validator will return
an error to you. Here is how you can test this yourself.
Go the W3 XHTML validator Web site: http://validator.w3.org/. Copy and paste the following sample HTML document to the input area:
<?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>
<head>
<base href="http://dev.fyicenter.com/" />
<meta name="Author" content="FYIcenter.com" />
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8" />
<script type="text/javascript" src="/_local.js"></script>
<link rel="stylesheet" type="text/css" href="/_fyi.css" />
</head>
<body>
<p></p>
</body>
</html>
Click the "Check" button, you will get the following error:
Error Line 12 column 7: end tag for "head" which is not finished. </head>
⇒ XHTML 'meta' Elements Not Closed
⇐ Incorrect HTML 'head' Element
2017-06-28, ∼1911🔥, 0💬
Popular Posts:
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
How to use the built-in "context" object in Policy expressions? The built-in "context" object can be...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...