×

HTML References

BASIC HTML TAGS

TAGS DESCRIPTION
<!DOCTYPE> Defines Document Type
<html> Defines Html document
<head> Defines Header of document
<title> Defines Title of document
<body> Describe all the content of document
<h1> to <h6> Defines Html Heading
<p> Write Paragraph in this tag
<br> Line break
<!--...--> Comment in Html

FORMATTING TAGS

TAGS DESCRIPTION
<abbr> Defines a abbreviation or acronym
<address> Defines contact information about author of a document
<b> Bold the text
<bdi> Isolates the part of text that might be formatted in different direction.
<blockquote> Defines a section that is quoted from another source.
<code> Defines a piece of Computer Code
<del> Defines the text has been deleted from document
<em> It emphasize text
<ins> Defines the text has been inserted into document
<mark> It highlights the text
<meter> Defines a scalar measurement within a range
<pre> Pre-formatted text
<small> Make text smaller
<strong> Defines important text
<var> Defines a variable
<time> Defines Date/Time

FORMS AND INPUT

TAGS DESCRIPTION
<form> It initiate the form.
<input> Defines an input control.
<textarea> Takes multiple line inputs.
<button> Form the clickable Button.
<select> Create drop down list.
<option> Create option in drop down list./td>
<label> Add label to  element.
<fieldset> Create group related elements in a form.
<keygen> Generates key-pair field for forms.
<datalist> Specifies a list of pre defined option of input control.
<output> Declares the result of calculation.

FRAMES

TAGS DESCRIPTION
<frame> Describe a frame or window in a frame set.
<frameset> Defines a set of frames
<noframes> Provide alternate text where frame not supported
<iframes> Forms the inline frame

IMAGES

TAGS DESCRIPTION
<img> Defines a image
<map> Defines client-side image-map
<area> It defines area inside an image-map
<canvas> Used to draw graphics via scripting language
<figure> Specifies self-contained content
<figcaption> Add caption to the figure tag
<picture> Defines a container for multiple image resource

AUDIO/VIDEO

TAGS DESCRIPTION
<audio> Embeds the audio file
<source> Define multiple media resources for media element
<track> Add text track for media element
<video> Embeds the video or movie

LINK

TAG DESCRIPTION
<a> Defines Hyperlink
<link> Defines a relationship between source pages to target page.
<nav> Provides navigation links

LIST

TAG DESCRIPTION
<ul> Un-ordered list declaration
<ol> Ordered list declaration
<li> Declares List items
<dl> Description list declaration
<dt> Define term in description list
<dd> Define description of a term
<menu> Defines a list
<menuitem> It invoke a pop-up menu

TABLE

TAG DESCRIPTION
<table> Declares a table
<caption> Add table caption
<th> Defines table header
<tr> Add data to row
<td> Define 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 the table
<col> Embeds in <colgroup > specifies col properties
<colgroup> Specifies group of one or more column in a table

Related Topics

HTML Anchor

HTML Anchor The HTML anchor tags define a hyperlink that links to other pages on one page. It can create hyperlinks to any web page and files, locations or any other...

3 minutes read.

HTML SVG

HTML SVG: SVG stands for Scalable Vector Graphics which defines the graphics for the web. It is a language for describing 2-D graphics in XML. Each drawn shape in SVG is...

1 minute read.

HTML <video> Tag

The Video tag in HTML is used to play video on a media player on the web page. We can also insert an audio by the video tag, but audio...

6 minutes read.

HTML <body> tag

HTML means Hyper Text Markup Language, which is most preferred for making Web pages. It explains how a Web page is put together. There are many different elements in HTML,...

3 minutes read.

What is a Container tag?

In HTML, there are different types of tags or say instructions which make the developer specify various elements in the document and make the browsers understand what to display. Tags in...

5 minutes read.

How to change text color in HTML

Changing the text colour of a web page is essential because it enhances readability. There are several ways to change the colour of the text in HTML, which are as follows: Text...

7 minutes read.

Html <colgroup> Tag

A HTML table's column group is specified by the "colgroup" tag. If you want to apply various properties to one or more <col> elements in an HTML table, then you...

4 minutes read.

HTML Data Tag

HTML Data Tag: The HTML < data > tag is used to transmit its content to a machine-readable version. The data are presented in a particular format. It is useful...

3 minutes read.

HTML Form Action

The <form> tag has an attribute named action that contains a URL. The HTML action attribute defines the webpage URL on which you want to send the data after submitting...

4 minutes read.

HTML 5 Tutorial

What is HTML5? HTML5 is a programming language which stands for the acronym Hyper Text Markup Language 5. It is program that enables the appearance of web pages to be changed, as well as changes...

5 minutes read.

HTML Button Disabled

The HTML <button> element has many attributes, one of them is the disabled attribute. The button on which you apply the disabled attribute will not work, or we can say...

4 minutes read.

HTML Date

The input element in HTML has several attributes. One of its attributes is the type attribute which creates a calendar in an order that a user can select a date...

5 minutes read.

HTML Forms

Forms are required when we want to collect data from the user. Html forms consists of different fields to take user inputs such as: input, text area, checkbox, password, radio...

4 minutes read.

HTML Basic Tags

Heading Tags: This tag represents the document header. It is said to be a good practice if every document starts with Heading. Heading tags ranges from H1 to H6 i.e....

3 minutes read.

Div Tag in HTML

In HTML, ‘div’ is a tag that specifies division or section in HTML document. But before going in detail of it, let’s first understand about tags in HTML. The tag...

8 minutes read.

HTML Ordered List

We use <ol> tag to make an ordered list in html. An ordered list is made to make a list of items in ordered form, ordered list can be either...

3 minutes read.

HTML <br> tag

HTML is referred to as Hyper Text Markup Language, which is the most popular language for creating Web pages. HTML explains the construction of a Web page. It contains a...

4 minutes read.

Font tag in HTML

HTML stands for Hypertext Mark-up Language and is used to create web pages and other information that can be later displayed in a web browser. It also consists of a...

4 minutes read.

HTML5 Tags

HTML5 Tags A list of newly included tags is provided in HTML5. These HTML 5 tags (elements) provide a better structure for the document. This list shows description of all HTML...

3 minutes read.

HTML Links

It consist of anchor element which is used to create a link between a source anchor and destination anchor. The anchor tag can be embedded between text, image, video or...

2 minutes read.