HTML or HyperText Markup Language - standard markup language used to create webpages.
It is written in the form of HTML elements consisting of tags enclosed in angle brackets list <html>.
HTML tags most commonly come in pairs like <h1> and </h1>, the first tag in a pair is the start tag, and the second tag is the end tag, which also are called opening and closing tags.
Some tags represent empty elements and are unpaired for example <img>
A web browser read HTML files without display the HTML tags and interpret them into visible or audible web pages.
HTML allows to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. Semantics within HTML is the practice of giving content on the page meaning and structure by using proper element.
For last week lectures, we learn how tho create structured documents. Here is the pictures where we create the HTML consisting all of what we have learn by combining table, links, pictures, headings, and other items.
Now, do you want to learn how to make HTML??? You can click here to see more lists of HTML elements.
|
HTML List |
Description |
|
Unordered List |
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. The list items will be marked with bullets (small black circles), circles, or squares. Example: <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> |
|
Ordered List |
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. The list items will be marked with numbers, uppercase letters, lowercase letters, uppercase roman numbers, or lowercase roman numbers. Example: <ol> <li>Coffee</li> <li>Milk</li> </ol> |
|
Description List |
A description list, is a list of terms, with a description of each term. The <dl> tag defines a description list. The <dt> tag defines the term (name), and the <dd> tag defines the data (description). Example: <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> |



