1 00:00:00,000 --> 00:00:01,190 >> SPEAKER: How about a list? 2 00:00:01,190 --> 00:00:04,290 Say, a list of all of the houses in Harvard's Quad? 3 00:00:04,290 --> 00:00:08,660 Well, let's start a file called list.html and go ahead and declare 4 00:00:08,660 --> 00:00:11,680 initially an ordered list of houses. 5 00:00:11,680 --> 00:00:15,270 >> Here, I've already gotten us started in list.html with some open tags and 6 00:00:15,270 --> 00:00:16,480 some close tags. 7 00:00:16,480 --> 00:00:21,320 Let's now introduce open bracket OL close bracket for Ordered List. 8 00:00:21,320 --> 00:00:24,030 And now, because I'm going to have a few things inside of this, let's 9 00:00:24,030 --> 00:00:27,420 preemptively close this tag so I don't forget to do so later. 10 00:00:27,420 --> 00:00:32,540 >> And inside of this open and close tag let's now put a list item, abbreviated 11 00:00:32,540 --> 00:00:35,230 LI, inside of angled brackets. 12 00:00:35,230 --> 00:00:39,620 Let's now do, say, Cabot, and then close this list item. 13 00:00:39,620 --> 00:00:42,990 Let's then in another list item do Currier and close that 14 00:00:42,990 --> 00:00:44,450 list item as well. 15 00:00:44,450 --> 00:00:49,070 And then lastly, let's start another list item and do Pforzheimer, and 16 00:00:49,070 --> 00:00:51,420 close that list item as well. 17 00:00:51,420 --> 00:00:57,230 >> Let's now save this file, change its permissions, and do it in a browser. 18 00:00:57,230 --> 00:01:01,260 Chmod a plus r list.html. 19 00:01:01,260 --> 00:01:10,220 Let's now open up Chrome, visit http://localhost/list.html. 20 00:01:10,220 --> 00:01:11,020 There's our list. 21 00:01:11,020 --> 00:01:15,240 >> And notice that the browser, because I specified an ordered list, or OL, has 22 00:01:15,240 --> 00:01:17,220 numbered these items for me. 23 00:01:17,220 --> 00:01:19,780 Suppose though, that, the numbers aren't all that desirable and I 24 00:01:19,780 --> 00:01:22,220 instead just want a more typical bulleted list. 25 00:01:22,220 --> 00:01:24,070 I don't want an ordered list, therefore. 26 00:01:24,070 --> 00:01:25,440 I want an unordered list. 27 00:01:25,440 --> 00:01:27,120 >> Well, this is an easy change. 28 00:01:27,120 --> 00:01:33,450 Let's go back to gedit and change the OL to UL both in the start tag and in 29 00:01:33,450 --> 00:01:34,510 the end tag. 30 00:01:34,510 --> 00:01:36,190 Let's now re-save the file. 31 00:01:36,190 --> 00:01:38,800 I don't need to re-change the permissions because simply changing 32 00:01:38,800 --> 00:01:40,470 the file does not change its permissions. 33 00:01:40,470 --> 00:01:42,100 We did that already before. 34 00:01:42,100 --> 00:01:46,490 But now let's reload this same page in Chrome. 35 00:01:46,490 --> 00:01:50,920 >> Back in Chrome, we'll click this icon, or Control-R. And now my one, two, and 36 00:01:50,920 --> 00:01:52,980 three have become instead three bullets. 37 00:01:52,980 --> 00:01:55,606