Some fun questions on Selectors: Write Down a CSS Selector that would select: Note: There is ofter more than one solution. 1) Only first paragraph inside a div block (hint: use a pseudo class) 2) Only first paragraph inside a div block that has class="fancy" 3) Only the 3rd item inside an unordered list that has id="nav" (hint: https://www.w3schools.com/CSSref/sel_nth-child.php) 4) Every element in the page, EXCEPT the body element. (hint: simple selectors page at W3Schools) 5) Only links that link to a .gif or .jpeg file (as opposed to .html or otherwise) (hint: attribute selectors page at W3Schools)