Tag Name |
Usage |
<a> |
Link. |
<b> |
Bold the text within the tag. |
<body> |
The information within this tag is the body of the HTML document. |
<br> |
Line break. |
<center> |
Center the text within the tag. |
<font> |
Specify the font type, size, and color for the text within the tag. |
<frame> |
Specifies the properties within each frame. |
<frameset> |
Signifies that this HTML page is composed of frame(s). |
<h1>...<h6> |
The text within these tags are treated as headers. |
<head> |
The text within this tag specifies the header information for the HTML document. |
<i> |
Italicize the text within the tag. |
<img> |
Specifies the image to be shown on the HTML document. |
<li> |
Itemized list. |
<meta> |
Specifies information about this HTML page. This information is not displayed on the browser but may be used by search engines. |
<ol> |
Ordered list, usually followed by one or more <li> tags. |
<p> |
New paragraph. |
<table> |
Signifies the presence of an HTML table. |
<td> |
Specifies column properties in a table. |
<tr> |
Specifies row properties in a table. |
<title> |
The text within this tag specifies the title of the HTML document. |
<u> |
Underline the text within the tag. |
<ul> |
Unordered list, usually followed by one or more <li> tags. |