Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Write a HEAD Element Properly
How To Write a HEAD Element Properly? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags
✍: FYIcenter.com
The head element can not be empty. It must contain the title element, defined by the "title" tag. The head element may contain a number of other miscellaneous elements, like base, script, style, meta, link, and object elements.
Here is good head element:
<head>
<title>My First HTML Document</title>
<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"" />
<link rel="stylesheet" type="text/css" href="/_local.css" />
</head>
2007-05-12, 4740👍, 0💬
Popular Posts:
Can Sub Procedure/Function Be Called Recursively? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the da...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
.NET INTERVIEW QUESTIONS - Can we use events with threading ? Yes, you can use events with thread; t...
In below sample code if we create a object of class2 which constructor will fire first? Public Class...