HTML Reference

Table Tags&Attributes

Tag Name Description
<table> Table The wrapper element for all HTML tables.
<thead> Table Head The set of rows defining the column headers in a table.
<tbody> Table Body The set of rows containing actual table data.
<tr> Table Row The table row container.
<td> Table Data The table row container.
<tfoot> Table Foot The set of rows defining the footer in a table.
colspan Column Span Defines how many columns a td element should span.
rowspan Row Span Defines how many rows a td element should span.

Common Html Tags

Attribute Name Description
<!DOCTYPE html> Document Type Declaration specifies the HTML version being used (HTML5).
<head> Head element Contains meta-information about the HTML document.
<h1>To<h6> Heading tags define headings with <h1> as the largest and <h6> as the smallest.
<p> Paragraph tag represents a block of text.
<a> Anchor tag creates hyperlinks.
<ul> Unordered List tag creates a bulleted list.
<ol> Ordered List tag creates a numbered list.
<li> List Item tag represents an item in a list.
<div> Division tag a generic container for grouping elements.
<span> Span tag a generic inline container.
<br> Line Break tag creates a line break in text.
<strong> Strong tag represents strong importance, typically bold.
<em> Emphasis tag represents emphasized text, typically italic.