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, ∼2326🔥, 0💬
Popular Posts:
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How to use the RSS Online Validator at w3.org? You can follow this tutorial to learn how to use the ...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...