DEV Community

Cover image for HTML5, includes approximately 145 tags.
SANTHOSH KUMAR
SANTHOSH KUMAR

Posted on

HTML5, includes approximately 145 tags.

🧱 Basic Structure Tags

<html>
<head>
<title>
<body>

📄 Metadata Tags (inside <head>)

<meta>
<link>
<style>
<script>
<base>

🏷️ Text Content Tags

<h1> to <h6>   (headings)
<p>            (paragraph)
<br>           (line break)
<hr>           (horizontal line)

✍️ Text Formatting Tags

<b>    (bold)
<strong>
<i>    (italic)
<em>
<u>    (underline)
<mark> (highlight)
<small>
<del>  (deleted text)
<ins>  (inserted text)
<sub>  (subscript)
<sup>  (superscript)

📦 Grouping & Layout Tags

<div>      (block container)
<span>     (inline container)
<header>
<footer>
<section>
<article>
<aside>
<main>
<nav>

🔗 Links & Media Tags

<a>        (link)
<img>      (image)
<video>
<audio>
<source>
<iframe>

📋 List Tags

<ul>  (unordered list)
<ol>  (ordered list)
<li>  (list item)
<dl>  (description list)
<dt>  (term)
<dd>  (definition)

📊 Table Tags

<table>
<tr>   (row)
<td>   (data cell)
<th>   (header cell)
<thead>
<tbody>
<tfoot>
<caption>

📝 Form Tags

<form>
<input>
<textarea>
<button>
<select>
<option>
<label>
<fieldset>
<legend>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)