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>
2024-01-19, ∼1779🔥, 0💬
Popular Posts:
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...
Where Is the Submitted Form Data Stored in PHP? When a user submit a form on your Web server, user e...
How To Break a File Path Name into Parts in PHP? If you have a file name, and want to get different ...