If we write any message in head tag then it is shown in the output then how we can say it contain non visual elements. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

If we write any message in head tag then it is shown in the output then how we can say it contain non visual elements.

If we write any message in head tag then it is shown in the output then how we can say it contain non visual elements. <head> EXAMPLE <\head> OUTPUT: EXAMPLE

24th Mar 2020, 2:56 PM
Satvik Jain
4 Answers
+ 2
You misunderstood. It doesn't mean that "if you put some text in <head>, those text won't be displayed in rendered view." If you put some <h2>This is a header</h2> in <head>, you can see it in the webpage. But then this is a wrong practice, because all content for webpage should be in <body>, <head> should only contain <title>, <meta>, <link> and <script>. That's the only correct practice.
25th Mar 2020, 4:59 AM
Gordon
Gordon - avatar
+ 4
The HTML content in the <head> tag of the HTML file will actually be loaded by the browser into the DOM as if it was in the <body> tag. I created the post below to explain this further: https://www.sololearn.com/post/636227/?ref=app
3rd Oct 2020, 11:32 PM
David Carroll
David Carroll - avatar
+ 3
firstly you should close with </head> not <\head> secondly content in <head> are for browser and search engine to read. meta are important for Responsive Design a d SEO. https://www.w3schools.com/css/css_rwd_viewport.asp https://moz.com/blog/the-ultimate-guide-to-seo-meta-tags
24th Mar 2020, 3:06 PM
Gordon
Gordon - avatar
0
But here it is written non visual elements but then why then the output contains thhe text wirtten in head tag
25th Mar 2020, 4:02 AM
Satvik Jain