HTML

HTML Projects

HTML Project

List of tags used in HTML
Previous Home Next
adplus-dvertising

Most important points of HTML tag

HTML tags normally come in pairs like <p< and </p>.

The first tag in a pair is the start tag, the second tag is the end tag.

The end tag is written like the start tag, but with a slash before the tag name.

HTML tags contain three main parts

  1. Opening tag
  2. Content
  3. Closing tag

But some HTML tags are unclosed tags. when a web browser reads an HTML document, browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and each tags contains different properties.

Syntex used

 <tagname>content</tagname> 

HTML Basic Tags

TagsDescription
<!DOCTYPE>It is provide the document type
<!--...-->It is provide a comment
<html>It is provide an HTML document
<title>It is provide a title for the document
<body>It is providethe document's body
<h1> to <h6>It is provide HTML headings
<p>It is provide a paragraph
<br>Inserts a single line break
<hr>It is provide a thematic change in the content

HTML Formatting Tags

TagsDescription
<acronym>It is provide an acronym
<abbr>It is provide an abbreviation or an acronym
<address>It is provide contact information for the author/owner of a document/article
<b>It is provide bold text
<bdo>Overrides the current text direction
<big>Defines big text
<blockquote>Defines a section that is quoted from another source
<cite>Defines the title of a work
<code>Defines a piece of computer code
<q>Defines a short quotation
<ins>Defines a text that has been inserted into a document
<del>Defines text that has been deleted from a document
<dfn>Represents the defining instance of a term
<kbd>Defines keyboard input
<pre> Defines preformatted text
<samp>Defines sample output from a computer program
<var>Defines a variable
<tt>Defines teletype text
<strong>Defines important text
<progress>Represents the progress of a task
<font>Defines font, color, and size for text
<strike>>Defines strikethrough text

HTML Link Tags

TagsDescription
<a>Defines a hyperlink
<link>It define relation between external resource and document , it also used within style sheets.
<nav>Defines navigation links

HTML Image and Object Tags

TagsDescription
<img>Defines an image
<map>Defines a client-side image-map
<area>Defines an area inside an image-map
<canvas>Used to draw graphics, on the fly, via scripting (usually JavaScript)
<figcaption>Defines a caption for a <figure> element
<figure> Specifies self-contained content

HTML List Tags

TagsDescription
<dir>Defines a directory list
<ul>Defines an unordered list
<ol>Defines an ordered list
<li>Defines a list item
<dl>Defines a description list
<dt>Defines a term/name in a description list
<dd>Defines a description of a term/name in a description list

HTML Table Tags

TagsDescription
<table>Defines a table
<caption>Defines a table caption.
<th>Defines a header cell in a table
<tr>Defines a row in a table
<td>Defines a cell in a table
<thead>Groups the header content in a table
<tbody>Groups the body content in a table
<tfoot>Groups the footer content in a table
<col>Specifies column properties for each column within a <colgroup> element
<colgroup>It is provide a group of one or more columns in a table

HTML Form Tags

TagsDescription
<form>It is provide an HTML form for user input
<input>It is provide an input control
<textarea>It is provide a multiline input control (text area)
<button>It is providea clickable button
<select>It is provide a drop-down list
<optgroup>It is provide a group of related options in a drop-down list
<option>It is provide an option in a drop-down list
<label>It is provide a label for an <input> element
<fieldset>Groups related elements in a form
<legend>It is provide a caption for a <fieldset> element
<datalist>It is provide a list of pre-defined options for input controls
<keygen>It is provide a key-pair generator field (for forms)
<output>It is provide the output

HTML Scripting Tags

TagsDescription
<script>It is define a client-side script
<noscript>It is define that users that do not support client-side scripts
Previous Home Next