Elissa Mughannem

Summary 4 - Chapter 3 & 12

Topic 1 - There are three types of lists

An ordered list tag is ol. This list is numbered. An unordered list tag is ul. This list used bullet points. To use the lists there must be a li in the tag. A definition list is dl. The word being defined is put between dt while the actual definition is put between dd.

Topic 2 - There are different properties that can style a font

Using text-transform can make the words become completely uppercase or lowercase or capitalized, which means every word has a capital. Text-decoration can put a line above, below, or through a word. It can also make the word flash on and off but this is not used often as it can be harsh on the eyes. Text-shadow is able to add a drop shadow to text.

Topic 3 - Links can be styled

:link is the property that is applied to a not yet visited link, something someone would see when they first visit the page. :visited is the property of a link that has already been clicked on. :hover is the property of a link that can change when the viewer hovers over the link with their mouse but has not yet clicked on it. :active is the property of a link that is being clicked on. This will be a brief moment as the active link will immediately become a visited link.