What is HTML structure tag?

do some HTML searches, for instance see w3schools
HTML (hyper-text markup language) tags form the basic structure for Web content. Add CSS (Cascading Style Sheets) for display format features.

Most HTML <tags> have closing counterpart </tags> at end of content. Some "empty" tags (such as <image>, <br> line break, <hr> horizontal rule) do not
 
Last edited:
Web pages have two basic containers: the head and the body:

the <head> tag, which contains information, or metadata, about the web page, such as a title for the page, javascripts, styles (CSS), meta information, and more. Whatever is inside the <head> tag does not display on the web page itself.
the <body> tag, containing the content that actually displays in a browser
 
Back
Top