DB section has been updated to add some SQL code.
We will look at some HTML elements that are used for displaying and formatting of text. The gallery below will show examples of the following tags.
Breaks and Paragraphs
Headings
Lists
The HTML <br> element produces a line break in text (carriage-return).
The paragraph tag <p> is used to display a paragraph of text with an empty line afterwards.
The HTML heading elements ( <h1> to <h6> ) are used to show six levels of section headings. <h1> is the largest heading with <h6> being the smallest.
There are two types of lists. Unordered and Ordered lists.
These lists are shown with bullet points such as:
Item 1
Item 2
Item 3
These lists are shown with numerical symbols such as:
Item 1
Item 2
Item 3
Lists can also be nested inside other lists