In the previous post, I show the general rule of CSS which is selector { property: value;}. Selector can be element tags such as <p>, <body>, <h1>, etc. For different style purpose, we may need to use different types of selectors in the CSS part. The course instructor introduces three basic CSS selectors which are used in most time. I would love to share my study note here. Element Selector: Element selector will select all instances of a given element. It's basically the type of attacks as you specify div or paragraph or body and then it will select all. For example: p{ color: blue;} will make all paragraph texts in blue color. ID Selector: ID selector selects an element with a given ID. And Only One Per Page! The first step is to add that hook which is called an ID as an element attribute in HTML. For example: <p id="special" > text </p> Then in the CSS part, we refer to the later by writing "#" a...