1 00:00:00,097 --> 00:00:01,245 Welcome back! 2 00:00:01,245 --> 00:00:04,093 Are you feeling a little more comfortable with HTML tags 3 00:00:04,093 --> 00:00:05,913 now that you've typed some yourself? 4 00:00:05,966 --> 00:00:07,700 We have a bunch more tags to cover 5 00:00:07,700 --> 00:00:10,167 so you'll be tagging all over the place soon. 6 00:00:10,167 --> 00:00:13,459 Now, do you remember this paragraph about rabbits? 7 00:00:13,459 --> 00:00:17,846 I'm a bit worried that the aliens might read it in a monotone voice. 8 00:00:17,846 --> 00:00:19,287 And they won't pay attention 9 00:00:19,287 --> 00:00:21,893 to the really important words and phrases in it. 10 00:00:22,010 --> 00:00:25,407 So I want to markup the parts that they should emphasize. 11 00:00:25,407 --> 00:00:29,450 We can start by using the `` tag, which stands for emphasis. 12 00:00:29,450 --> 00:00:31,600 We use it whenever we want to to indicate 13 00:00:31,600 --> 00:00:34,033 where we would emphasize a word while speaking. 14 00:00:34,033 --> 00:00:36,100 Like, if I want the aliens to say, 15 00:00:36,100 --> 00:00:39,100 "The most orange vegetables in OUR world." 16 00:00:39,100 --> 00:00:43,850 Then I can wrap the "our" in an `` tag. 17 00:00:44,296 --> 00:00:46,333 The browser will see the ``, 18 00:00:46,333 --> 00:00:49,962 and then italicize the text inside of it to show the emphasis. 19 00:00:49,962 --> 00:00:52,073 Now the aliens will really realize that I'm 20 00:00:52,073 --> 00:00:54,600 talking about OUR world not theirs, 21 00:00:54,600 --> 00:00:57,200 because I don't know anything about their world 22 00:00:57,200 --> 00:00:59,372 and what their vegetables look like. 23 00:00:59,707 --> 00:01:03,000 What if the aliens are just skimming the text? 24 00:01:03,000 --> 00:01:06,860 What if they don't even read the entire amazing paragraph that I wrote? 25 00:01:06,866 --> 00:01:10,580 In that case, I want to make sure a few key phrases stand out. 26 00:01:10,580 --> 00:01:13,240 And I can use a `` tag for that. 27 00:01:13,240 --> 00:01:17,356 Probably the most important fact, is how much rabbits reproduce. 28 00:01:17,356 --> 00:01:20,440 Because I wouldn't want aliens taking rabbits home with them 29 00:01:20,440 --> 00:01:24,006 and then being mad at us when the rabbits eventually overpopulate them 30 00:01:24,006 --> 00:01:25,593 and take over their government. 31 00:01:25,603 --> 00:01:30,399 So, I will wrap this fact in a `` tag. 32 00:01:32,903 --> 00:01:35,799 Alright, the browser will see the ``, 33 00:01:35,799 --> 00:01:40,006 and then bold the text inside of it, to make sure that it stands out. 34 00:01:40,006 --> 00:01:42,466 We can even combine `` and``, 35 00:01:42,466 --> 00:01:44,300 and put them inside of each other. 36 00:01:44,300 --> 00:01:46,200 Like if I want the aliens to say, 37 00:01:46,200 --> 00:01:49,133 "More than any human ever has." 38 00:01:49,133 --> 00:01:53,784 Then I can wrap the "ever" in an `` . 39 00:01:55,166 --> 00:01:58,666 Okay, now I'm happy, I think they'll really pay attention. 40 00:01:58,666 --> 00:02:01,900 And now you've got two more tags in your HTML toolbox. 41 00:02:01,900 --> 00:02:04,643 Use them, but don't abuse them.