HTML Tag List
Always add the tag declaration to your HTML documents, so that the browser knows what type of document to expect. --------------------------------------------------------------------- This tag is the container for all other HTML elements (except for the tag). Most HTML elements are written with a start tag (or opening tag) and an end tag (or closing tag), with content in between. An HTML element encompasses opening tag, closing tag and content e.g.
This is the content
. --------------------------------------------------------------------- This tag can include other elements; a title for the webpage, scripts, styles, meta information, and more. For example:
This is displayed at the top of the browser. Search engines often use it as a way to find web pages when a user types and searches for certain keywords. Search Engine Optimisation (SEO).
, and
This is often used in the head, say, to define page refresh rate, describe the webpage content and identify its author. No closing tag needed in HTML. ---------------------------------------------------------------------