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, ∼1745🔥, 0💬
Popular Posts:
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How to pull NVIDIA CUDA Docker Image with the "docker image pull nvidia/cuda" command? If you are ru...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...