html tags list | list of html tags | complete html tags #html #htmlcss
User Html tags list
list of commonly used HTML tags:
<html>: Defines the root of an HTML document.
<head>: Contains meta-information about the HTML document.
<title>: Defines the title of the document, displayed in the browser's title bar.
<body>: Represents the content of an HTML document.
<h1> to <h6>: Defines headings of different levels, where <h1> represents the highest level.
<p>: Defines a paragraph.
<a>: Creates a hyperlink.
<img>: Embeds an image in the document.
<ul>: Represents an unordered (bulleted) list.
<ol>: Represents an ordered (numbered) list.
<li>: Defines a list item within <ul> or
<ol>. Define order list.
<div>: Defines a division or section in the document.
<span>: Defines an inline section of the document.
<table>: Creates a table.
<tr>: Defines a table row.
<td>: Defines a table cell.
<th>: Defines a header cell in a table.
<form>: Creates a form for user input.
<input>: Defines an input control within a form.
<button>: Creates a clickable button.
<textarea>: Defines a multi-line text input control.
<select>: Creates a dropdown list.
<option>: Defines an option in a
<select> element.
<label>: Represents a label for an input control.
<br>: Inserts a single line break.
<hr>: Represents a thematic break or horizontal rule.
<iframe>: Embeds an inline frame for displaying external content.
<style>: Defines style information for a document.
<script>: Embeds or refers to an external JavaScript file.
HTML Tags List
<table>: Creates a table.
<tr>: Defines a table row.
<td>: Defines a table cell.
<th>: Defines a header cell in a table.
<form>: Creates a form for user input.
<input>: Defines an input control within a form.
<button>: Creates a clickable button.
<textarea>: Defines a multi-line text input control.
<select>: Creates a dropdown list.
<option>: Defines an option in a
<select> element.
<label>: Represents a label for an input control.
<br>: Inserts a single line break.
<hr>: Represents a thematic break or horizontal rule.
<iframe>: Embeds an inline frame for displaying external content.
<style>: Defines style information for a document.
<script>: Embeds or refers to an external JavaScript file.
<header>: Represents the introductory content or a group of introductory elements in a document.
<footer>: Represents the footer of a document or a section.
<nav>: Defines a section containing navigation links.
<section>: Defines a section in a document.
<article>: Represents a self-contained composition that can be independently distributed or syndicated.
<aside>: Defines content that is tangentially related to the content around it.
<main>: Represents the main content of a document.
<blockquote>: Indicates that the enclosed text is a quotation.
<cite>: Specifies the title of a work or a name of an author.
<code>: Defines a piece of computer code.
<pre>: Represents preformatted text, preserving both spaces and line breaks.
<em>: Indicates emphasis on text.
<strong>: Indicates strong importance or seriousness.
<mark>: Highlights or marks a specific section of text.
<sub>: Renders text as subscript.
<sup>: Renders text as superscript.
<abbr>: Represents an abbreviation or acronym.
<del>: Indicates deleted or removed text.
<ins>: Indicates inserted or added text.
<hr>: Represents a thematic break or horizontal rule.
<video>: Embeds a video into the document.
<audio>: Embeds audio content into the document.
<canvas>: Creates a drawing area for graphics using JavaScript.
<svg>: Defines an SVG (Scalable Vector Graphics) image.
<datalist>: Defines a set of predefined options for input controls.
<meter>: Represents a scalar measurement within a known range.
<progress>: Represents the progress
Comments
Post a Comment