Tools, FAQ, Tutorials:
HTML 'head' Element Structure
How To Write a "head" Element Properly?
✍: 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>
Â
⇒HTML Document Structure and Head Level Tags
⇒⇒HTML Tutorials
2017-02-20, 883👍, 0💬
Popular Posts:
How to write a policy to set and get custom variables? Here is a policy that sets and gets custom va...
How To Connect to MySQL from a PHP Script in PHP? If you want access the MySQL server, you must crea...
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...
Where to find tutorials on HTML language? I want to know how to learn HTML. Here is a large collecti...