Using HTML <head>
Explore the purpose and elements of the HTML head section. Understand how to use the title tag, link stylesheets, embed scripts, and provide metadata to improve web page functionality and search engine visibility.
We'll cover the following...
The <head> tag is an important part of HTML. It is a container of non-content elements that belong to the whole page. It must contain the <title> element and may contain one of the following additional elements as well: <style>, <link>, <script>, <noscript>, <meta>, and <base>.
<title> is required as it provides the title of the page that is displayed in the browser toolbar, in favorite, provided the page is added to Favorites, and also used by search engines to display the headline when the page is in within the search results.
In Chapter: A Short Tour of HTML, CSS, and JavaScript, you ...