1 00:00:00,000 --> 00:00:00,310 2 00:00:00,310 --> 00:00:02,400 >> DAVID MALAN: So I've been making my own search engine, but I've just 3 00:00:02,400 --> 00:00:04,720 decided to restructure things underneath the hood. 4 00:00:04,720 --> 00:00:06,480 Let's take a look. 5 00:00:06,480 --> 00:00:11,240 Here in the HTML for this page, notice that I have now atop the page what 6 00:00:11,240 --> 00:00:15,390 appears to be a logo, logo.gif, and I've given it an alternate text of 7 00:00:15,390 --> 00:00:18,620 CS50 Search, just in case someone is not able to see that image. 8 00:00:18,620 --> 00:00:22,340 >> But notice that I've placed that image inside of a div, and I've assigned it 9 00:00:22,340 --> 00:00:27,060 a unique ID of quote, unquote, "top." Below that, I have another div whose 10 00:00:27,060 --> 00:00:31,020 unique ID I've decided to be "middle," but I could be identifying these divs 11 00:00:31,020 --> 00:00:32,360 as anything I'd like. 12 00:00:32,360 --> 00:00:35,340 And inside of this "middle" div, notice that I have a form. 13 00:00:35,340 --> 00:00:40,080 That form is apparently going to submit via HTTP get to Google servers 14 00:00:40,080 --> 00:00:45,150 the following input, an input whose type is text and whose name is q. 15 00:00:45,150 --> 00:00:48,520 And that will happen as soon as the user hits Enter or clicks a button 16 00:00:48,520 --> 00:00:50,410 labeled CS50 Search. 17 00:00:50,410 --> 00:00:53,750 >> Now at the bottom of the page, I have a third and final div whose unique 18 00:00:53,750 --> 00:00:57,670 identifier is "bottom." Inside of that, I have mention of copyright, 19 00:00:57,670 --> 00:00:59,750 including an HTML entity. 20 00:00:59,750 --> 00:01:06,230