W3Schools
w3schools.com › TAGS › default.asp
HTML Reference
<!--> <!DOCTYPE> <a> <abbr> <acronym> <address> <applet> <area> <article> <aside> <audio> <b> <base> <basefont> <bdi> <bdo> <big> <blockquote> <body> <br> <button> <canvas> <caption> <center> <cite> <code> <col> <colgroup> <data> <datalist> <dd> <del> <details> <dfn> <dialog> <dir> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <font> <footer> <form> <frame> <frameset> <h1> - <h6> <head> <header> <hgroup> <hr> <html> <i> <iframe> <img> <input> <ins> <kbd> <label> <legend> <li> <link> <main> <map> <mark> <menu> <meta> <meter> <nav> <noframes> <noscript> <object> <ol> <optgroup> <
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › HTML › Reference › Elements
HTML elements reference - HTML | MDN
February 6, 2026 - This page lists all the HTML elements, which are created using tags.
Videos
07:39
The HTML Tags They NEVER Taught You - YouTube
HTML Tags Explained | Visual Guide for Beginners - YouTube
03:28
Defining the HTML Tag - YouTube
17:07
The only tags you need when first learning HTML - YouTube
HTML a Tag Tutorial: Easy Guide for Beginners - YouTube
21:26
HTML Tag Text Basics | HTML5 Element Text Tutorial - YouTube
Open Graph
ogp.me
The Open Graph protocol
If a tag can have multiple values, just put multiple versions of the same <meta> tag on your page.
W3Schools
w3schools.com › html › html_formatting.asp
HTML Text Formatting
The HTML <i> element defines a part of text in an alternate voice or mood. The content inside is typically displayed in italic. Tip: The <i> tag is often used to indicate a technical term, a phrase from another language, a thought, a ship name, etc.
Khan Academy
khanacademy.org › computing › computer-programming › html-css › intro-to-html › a › quick-tip-html-tags
Quick tip: HTML tags (article)
We cannot provide a description for this page right now
DigitalOcean
digitalocean.com › community › tutorials › what-is-an-html-tag
What is an HTML Tag? | DigitalOcean
November 20, 2020 - An HTML tag is a piece of markup language used to indicate the beginning and end of an HTML element in an HTML document.
Uw
projects.accesscomputing.uw.edu › webd2 › student › unit2 › common_tags.html
Common HTML Tags
Common HTML tags are presented below, organized into four tables based on their purpose. The first table includes tags that control the overall structure of the web page. The second and third tables include tags that mark up the majority of web page content. Container tags (those that contain content) are presented in the second table, and non-container tags (those that stand alone) are presented in the third table.
Tutorialspoint
tutorialspoint.com › html › html_basic_tags.htm
HTML Basic Tags: A Guide for Complete Beginners with Examples
HTML tags are the fundamental elements of HTML used for defining the structure of the document. These are letters or words enclosed by angle brackets ( ). Usually, most of the HTML tags contain an opening and a closing tag.
Medium
medium.com › @zmactavish › 30-html-tags-to-know-b0a85b122ded
30 HTML Tags to know. In my last article, I broke down how to… | by Zack MacTavish | Medium
February 1, 2022 - Labeling with H1 will let the web browser know that this piece of information is the most important part of our page. An H2 will be the second most important piece of information, and so forth down to H6. It is best to use CSS to determine the size of our typography and only use the HTML tags to clarify the importance of our information hierarchy to the browser.
HTML Standard
html.spec.whatwg.org
HTML Standard
HTML documents consist of a tree of elements and text. Each element is denoted in the source by a start tag, such as "<body>", and an end tag, such as "</body>".
Mikecodeur
blog.mikecodeur.com › en › post › the-essential-html-tags-every-beginner-should-know
The Essential HTML Tags Every Beginner Should Know
December 11, 2024 - An HTML tag is an element used to structure and organize the content of a web page.
W3C
w3.org › History › 19921103-hypertext › hypertext › WWW › MarkUp › Tags.html
Tags used in HTML
This is a list of tags used in the HTML language. Each tag starts with a tag opener (a less than sign) and ends with a tag closer (a greater than sign). Many tags have corresponding closing tags which identical except for a slash after the tag opener.
Quackit
quackit.com › html › tags
HTML Tags
HTML tags are the building blocks of HTML. They are used to define the HTML elements that should appear on a web page. Without HTML tags, you wouldn't have an HTML page.
California State University, Northridge
csun.edu › science › help › help_docs › html_tags.html
HTML tags
HTML Tags Chart source: www.web-source.net · This will center your contents
React
legacy.reactjs.org › docs › introducing-jsx.html
Introducing JSX – React
Since JSX is closer to JavaScript than to HTML, React DOM uses camelCase property naming convention instead of HTML attribute names. For example, class becomes className in JSX, and tabindex becomes tabIndex. If a tag is empty, you may close it immediately with />, like XML: