+ 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