HTML Tutorial

HTML Tags

  1. what is tags
  2. what is self closing tags

what are the self closing tags
In this tutorial, as the title pointed out, we pay much attention to the HTML tags as they have great importance in constructing web pages. The tags are easy to recognize because they are enclosed in angle brackets, for a tag one will be `<tag>` while the closing one will be `</tag>`.> Almost all elements in HTML need both an opening and a closing tag, although there is a few that can be called self-closing tags.

For instance, you have the open `tag <br/>` to put a line break and it does not have the close tag as against the `tag <p> ` which is usually closed with the `</p>` as it defines a paragraph.

Here’s a complete list of all HTML tags divided into two categories: open/close tags and self-closing tags.

Open and Close HTML Tags:

				
					<a></a>
<abbr></abbr>
<address></address>
<article></article>
<aside></aside>
<audio></audio>
<b></b>
<bdi></bdi>
<bdo></bdo>
<blockquote></blockquote>
<body></body>
<button></button>
<canvas></canvas>
<caption></caption>
<cite></cite>
<code></code>
<colgroup></colgroup>
<data></data>
<datalist></datalist>
<dd></dd>
<del></del>
<details></details>
<dfn></dfn>
<div></div>
<dl></dl>
<dt></dt>
<em></em>
<fieldset></fieldset>
<figcaption></figcaption>
<figure></figure>
<footer></footer>
<form></form>
<h1></h1> <h2></h2> <h3></h3> <h4></h4> <h5></h5> <h6></h6>
<head></head>
<header></header>
<hgroup></hgroup>
<html></html>
<i></i>
<iframe></iframe>
<ins></ins>
<kbd></kbd>
<label></label>
<legend></legend>
<li></li>
<main></main>
<map></map>
<mark></mark>
<meter></meter>
<nav></nav>
<noscript></noscript>
<object></object>
<ol></ol>
<optgroup></optgroup>
<option></option>
<output></output>
<p></p>
<pre></pre>
<progress></progress>
<q></q>
<rp></rp>
<rt></rt>
<ruby></ruby>
<s></s>
<samp></samp>
<script></script>
<section></section>
<select></select>
<small></small>
<span></span>
<strong></strong>
<style></style>
<sub></sub>
<summary></summary>
<sup></sup>
<table></table>
<tbody></tbody>
<td></td>
<textarea></textarea>
<tfoot></tfoot>
<th></th>
<thead></thead>
<time></time>
<title></title>
<tr></tr>
<u></u>
<ul></ul>
<var></var>
<video></video>

				
			

Self-Closing HTML Tags:

				
					<area />
<br />
<col />
<embed />
<hr />
<img />
<input />
<link />
<meta />
<source />
<track />
<wbr />

				
			

Try It Yourself