Week 14

Tuesday

I do not want you spending much time this week puzzling out the fonts and icons, so here they are:

Fonts

Font Awesome Icons

Our new content for today is nth-child logic. With this logic, you can apply style to every other paragraph, or every third list item, or every fourth table row. The syntax for paragraphs is p:nth-child(2n) {} for every other paragraph starting with the second paragraph. If you remove the n from that line, it would only apply the style to the second paragraph. Nth-child logic is most useful when you are presenting a large list of information and want to make it easier for visitors to parse.