What are the 100 tags in HTML?
Ans.
<!DOCTYPE>
: Defines the document type and version of HTML.
<html>
: Defines the root element of an HTML document.
<head>
: Contains meta-information about the document.
<title>
: Sets the title of the document.
<meta>
: Provides metadata about the HTML document.
<link>
: Defines the relationship between the current document and an external resource.
<style>
: Contains CSS styling rules for the document.
<script>
: Defines client-side JavaScript.
<body>
: Contains the visible content of the document.
<h1>
to <h6>
: Headings of different levels.
<p>
: Defines a paragraph.
<a>
: Defines a hyperlink.
<img>
: Embeds an image.
<div>
: Defines a division or a section in an HTML document.
<span>
: Defines a section in a document.
<ul>
: Defines an unordered list.
<ol>
: Defines an ordered list.
<li>
: Defines a list item.
<table>
: Defines a table.
<tr>
: Defines a row in a table.
<th>
: Defines a header cell in a table.
<td>
: Defines a cell in a table.
<form>
: Defines an HTML form for user input.
<input>
: Defines an input control.
<textarea>
: Defines a multiline input control (text area).
<button>
: Defines a clickable button.
<select>
: Defines a drop-down list.
<option>
: Defines an option in a drop-down list.
<label>
: Defines a label for an <input>
element.
<fieldset>
: Groups related elements in a form.
<legend>
: Defines a caption for a <fieldset>
element.
<iframe>
: Defines an inline frame for embedding another document.
<audio>
: Defines sound content.
<video>
: Defines video content.
<canvas>
: Used to draw graphics, on the fly, via scripting (usually JavaScript).
<svg>
: Defines a container for SVG graphics.
<footer>
: Defines a footer for a document or section.
<header>
: Defines a header for a document or section.
<nav>
: Defines navigation links.
<article>
: Defines an independent piece of content in a document.
<!DOCTYPE>
: Defines the document type and version of HTML.
<html>
: Defines the root element of an HTML document.
<head>
: Contains meta-information about the document.
<title>
: Sets the title of the document.
<meta>
: Provides metadata about the HTML document.
<link>
: Defines the relationship between the current document and an external resource.
<style>
: Contains CSS styling rules for the document.
<script>
: Defines client-side JavaScript.
<body>
: Contains the visible content of the document.
<h1>
to<h6>
: Headings of different levels.
<p>
: Defines a paragraph.
<a>
: Defines a hyperlink.
<img>
: Embeds an image.
<div>
: Defines a division or a section in an HTML document.
<span>
: Defines a section in a document.
<ul>
: Defines an unordered list.
<ol>
: Defines an ordered list.
<li>
: Defines a list item.
<table>
: Defines a table.
<tr>
: Defines a row in a table.
<th>
: Defines a header cell in a table.
<td>
: Defines a cell in a table.
<form>
: Defines an HTML form for user input.
<input>
: Defines an input control.
<textarea>
: Defines a multiline input control (text area).
<button>
: Defines a clickable button.
<select>
: Defines a drop-down list.
<option>
: Defines an option in a drop-down list.
<label>
: Defines a label for an<input>
element.
<fieldset>
: Groups related elements in a form.
<legend>
: Defines a caption for a<fieldset>
element.
<iframe>
: Defines an inline frame for embedding another document.
<audio>
: Defines sound content.
<video>
: Defines video content.
<canvas>
: Used to draw graphics, on the fly, via scripting (usually JavaScript).
<svg>
: Defines a container for SVG graphics.
<footer>
: Defines a footer for a document or section.
<header>
: Defines a header for a document or section.
<nav>
: Defines navigation links.
<article>
: Defines an independent piece of content in a document.
Tags:
Computer