HTML Dictionary

HTML Dictionary


TagInformation
<!-- ... -->Used to give a comment or description. Sentences located on this container will not be visible in the browser
<!DOCTYPE> Defines document type information 
<a>Defines an anchor, but it is more appropriate to interpret it as a link because this link is used to link one HTML document to another HTML document 
<abbr>Used to describe an abbreviated phrase and you can provide useful information to page source browsers/screen readers, translation systems, and search engines which comes from the abbreviation that has been described, but when in the browser the description will not appear and is only for information
<acronym>Defining acronyms / this tag function is more or less the same as the <abbr>
<address>Defines contact information for the author/owner of the document
<applet>Used to insert java file into HTML document
<area />Defines a clickable area (link) on the image map
<b>Make text bold
<base />Defines the base/target URL for all relative URLs in the document
<basefont />Create default text attributes, such as color, size, font type for all text in the document
<bdo>Used to override text direction
<big>Increases the text size by one point from the default
<blink>Make text blink
<blockquote>Defines a long quote. When in the browser the text will appear indented into 
<body>Defines the body/content of an HTML document, serves to determine how the contents of a document are displayed in the web browser. The contents of the document can be in the form of text, images, animations, links and so on
<br />Give a new line
<button>Defines a button clicked
<caption>Creating a caption for the table
<center>For center alignment of text or images 
<cite>Defining a citation
<code>Defines a section of computer code
<col />Defines attribute values ​​of one or more columns in a table
<colgroup>Specifies a group of one or more columns in a table for performants
<dd>Defines a description of the item in the definition list
<del>To center the text/cross out text
<dfn>Defines a definition term
<dir>Defines a directory listing
<div>Defines a section in a document 
<dl>Defines a definition list
<dt>Defines a term (item) in the definition list
<em>Creates italic text. The function of this tag is the same as the <i> but tags <em> which is preferred/emphasized on use for italics
<embed>Used to insert video files or music files
<fieldset>To group related elements in a form / create like frames-boxes in a form
<font>Defines the font type, color and size for text
<form>Defines an HTML form for form input
<frame />Defines a frame in a frameset
<frameset>Defines a set of frames
<h1> to <h6>Used to indicate the beginning of a header/title of the HTML document.
<head>Used to provide information about the document
<hr />Creating horizontal lines
<html>Defines the root of an HTML document
<i>Make text italic
<iframe>Defines an inline frame
<img />Function to display images in HTML documents
<input />Defines input fields on the form
<map>Defines client-side image maps
<marquee> Make text run vertically or horizontally
<menu>Defines a menu list
<meta />Defines metadata about an HTML document
<nobr>Prevent line breaks in text or images
<noframes>If the user's browser does not support frames
<noscript>If the user's browser does not support client-side scripts
<object>embed an object
<ol>Defines a list in numbered format
<optgroup>Displays grouped options in a drop-down list
<options>Displays multiple options in a drop-down list
<p>Create a paragraph
<param />Defines a parameter for an object
<pre>Make text the same font size
<q>Defines a short quote
<s>To center the text/cross out text, this tag functions the same as the <del> but tags <s> not recommended instead using <del>
<samp>Defines a sample output from a computer program
<script>Defines a client-side script
<select>Create a drop-down list
<small>Shrink text size from default size
<span>Defines a section in a document 
<strike>To center line/strike text, this tag functions the same as <del>
<strong>Making text bold, this tag functions the same as the <b>
<style>Defines style information for HTML documents
<sub>Applies a subscript effect to the text
<sup>Gives a superscript effect to the text
<table>Creating a table
<tbody>To group body contents in a table
<td>Defines cells in a table
<textarea>Defines a multiline input control
<tfoot>To group footer contents in a table
<th>Defines header cells in  a table
<thead>To group header contents in a table
<title>Create a title for an HTML document
<tr>Create a row in a table
<tt>Defines teletype text
<u>Creating underlined text, this tag functions the same as the <ins> but tags <u> not recommended for HTML text formatting category but includes HTML Style category
<ul>Defines a list in bulleted format
<var>Defines a variable
<xmp>Defines preformatted text, this tag functions the same as the <pre>