/*html-tag a(anchor)*/
The <a> tag defines a hyperlink, which is used to link from a page to another.
div/
/*html-tag div(division)*/
The <div> tag defines a division or a section in an HTML document.
dr/
/*html-tag br(break)*/
The <br> tag inserts a single line break.
dl/
The <dl> tag defines a description list.
The <dl> tag is used in conjunction with <dt> and <dd>.
dt/
The <dt> tag defines a term/name in a description list.
dd/
The <dd> tag is used to describe a term/name in a description list.
h1,h2,h3...h6/
The <h1> to <h6> tags are used to define HTML headings. The <h1> tag is the most largest font size to <h2>...<h6>.
iframe/
The <iframe> tag specifies an inline frame.
An inline frame is used to embed another document within the current HTML document.
link/
The <link> defines the relationship between the current document and an external resource.
ol/
The <ol> tag defines an ordewhite list. An ordered list can be numerical or alphabetical.
ul/
The <ul> tag defines an unordered (bulleted) list.
li/
The <li> tag defines a list item. An ordered list can be numerical or alphabetical.
The <li> tag is used inside ordered lists <ol>, unordered lists <ul>.
p/
/*html-tag p(paragraph)*/
The <p> tag defines a paragraph.
select/
The <select> element is used to create a drop-down list.
The <select> element is most often used in a form, to collect user input.
small/
The <small> tag defines smaller text which like side-comments.
span/
The <span> tag is an inline container used to mark up a part of a text, or a part of a document.
The <span> tag is much like the <div> element, but <div> is a block-level element and <span> is an inline element.
strong/
The <strong> tag is used to define text with strong importance.
The content inside is typically displayed in bold.
tr/
The <tr> tag defines a row in an HTML table.
A <tr> element contains one or more <th> or <td> elements.
th/
The <th> tag defines a header cell in an HTML table.
The text in <th> elements are bold and centered by default.
td/
The <td> tag defines a standard data cell in an HTML table.
The text in <td> elements are regular and left-aligned by default.