Ordered and Unordered Lists
To create an ordered list (number list), the code is ol. For each item within the list, you need to put li and /li. Li stands for list. The list must be in between ol and closing ol. To make a bullet list is considered an unordered list. This code is ul. Just like the ordered list, you must place li and /li for each item in the list. All of this needs to be placed within ul. If there is information with a bullet you need to create a nested list. To do this you need to add a ul within the original ul as well as close it with /ul. This will change the style of your bullet points.
Definition Lists
If you want to include definitions within your site you can use a definition list. This i defined as dl. Within the dl, you need the word and the definition. For the word use dt and /dt(definition term) and place the word within those parameters. Next, add dd and /dd and place the definition between them. You can continue as many words and definitions as needed as long as they are included in the dl.
Typefaces
When choosing a typeface, you must choose a font family. This will allow you to choose what typeface you want for each section of your site. You can also assign the type to be set for different titles like h1 and h2. The font size can also be customized. There are 3 different ways to change the size of the text. You can use pixels which are px, percentages, or ems. This will allow your text to be customized to your liking.