+ 2

(HTML) <head>...</head> :contains non-visual elements, what does it mean?

15th Nov 2021, 4:40 AM
Meet
Meet - avatar
3 Answers
+ 11
ā– head tag is used as container for metadata elements (metadata means "data about data") ā– Head contains elements like "(<title></title>), (<style>), (<link>), (script), (base) and (meta)" ā– uses of metadata elements : āž£ (<title></title>) defines title of document in search results āž£ (<style>) defines style of document (generally contains css), āž£ (<link>) defines links, āž£ (script) defines scripts (ex: JS), āž£ metadata elements also defines char sets and other meta informations. ā– Such non-visual elements do not appear on the user interface at run time; instead, theyĀ support visual controls or provide other services such as logging. Non-visual controls typically hold data, formatting, or other information needed by one or more interactive controls.
15th Nov 2021, 6:17 AM
Sujal
Sujal - avatar
+ 4
Non visual elemnts is to define the web page behavior & language and other data for both user and browser.
16th Nov 2021, 12:17 PM
Mohamed
Mohamed - avatar
+ 1
That means anything you write in that section will not be shown to the client in the front-end , let's say it's you talking to the page not to the viewers .
17th Nov 2021, 12:33 AM
Zakaria AKTOUF
Zakaria AKTOUF - avatar