Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Happens If the TITLE Element is Missing
What Happens If the TITLE Element is Missing? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags
✍: 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>
2007-05-12, 4707👍, 0💬
Popular Posts:
How can you check to see whether a symbol is defined? You can use the #ifdef and #ifndef preprocesso...
What is the purpose of the wait(), notify(), and notifyAll() methods? The wait(),notify(), and notif...
How Oracle Handles Dead Locks? - Oracle DBA FAQ - Understanding SQL Transaction Management Oracle se...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
How To Give a User Read-Only Access to a Database? - MySQL FAQs - Managing User Accounts and Access ...