0
non-visual elements
What do you mean "The head of an HTML file contains all of the non-visual elements"
3 Réponses
+ 4
That means that <head> tag contains other tags that does not show anything on webpage but they help you in developing that page.
Like it can contains <link> to external css files and fonts, linking external scripts, meta tags which represents meta data information etc.
+ 1
https://code.sololearn.com/WfU5xVkv29Eb
can you see this code and help me because i need incert answers in the test
please help me
0
The HTML <head> Element
The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag.
<head> is a header section .
HTML metadata is data about the HTML document. Metadata is not displayed.
Metadata typically define the document title, character set, styles, links, scripts, and other meta information.
The following tags describe metadata: <title>, <style>, <meta>, <link>, <script>, and <base>.
The HTML <title> Element
The <title> element defines the title of the document, and is required in all HTML/XHTML documents.
The <title> element:
defines a title in the browser tab
provides a title for the page when it is added to favorites
displays a title for the page in search engine results
A simple HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
The content of the document......
</body>
</html>