0
Html
what is visual tag
2 Answers
+ 3
A tag with code you can see.
<p> is a visual tag. You can see it.
<meta> is not a visual tag. It defines behind the scenes information
+ 1
There are 3 main components to a Web page. The <html>, <head> and <body> tags (arguably the doctype but that's not essential). <html> wraps everything and instructs the browser that everything within it is in fact HTML. <head> is read by the browser but typically holds meta data along with the title tag as well as links to some external files but doesn't render any visual elements. <body> is where all the visual meat sits but can also contain some things that can also go into the <head> tag.