0

Html

what is visual tag

26th Jun 2018, 4:47 AM
Hammad Ali
Hammad Ali - avatar
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
26th Jun 2018, 5:04 AM
Andre Daniel
Andre Daniel - avatar
+ 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.
26th Jun 2018, 5:03 AM
Joakim SĂžrensen
Joakim SĂžrensen - avatar