{ Theres more indentation Exercise 9.1 1. Open the file Chapter 9 - List and Links.html concurrently in your browser and text editor. 2. Modify the CSS declaration for ol and observe what happens to the Cars Ordered List. Try each of the following: (a) list-style-type: decimal-leading-zero; (b) list-style-type: lower-roman; (c) list-style-type: upper-roman; (d) list-style-type: upper-alpha; (e) list-style-type: lower-alpha; (f) list-style-type: lower-greek; (g) list-style-type: none; 3. Modify the CSS declaration for ul and observe what happens to the Cars Unordered List . Try each of the following: (a) list-style-type: circle; (b) list-style-type: square; (c) list-style-type: none; (d) list-style-type: disc; 4. Add the following rule to the CSS declaration for ul : list-style-position: outside; Refresh the browser. Nothing changes right? That is because list-style-position: outside ; is the default. Now change list-style-position: outside; to list-styl...