1
00:00:02,090 --> 00:00:03,710
For the HTML part,

2
00:00:03,710 --> 00:00:06,840
we go back to the index HTML file and

3
00:00:06,840 --> 00:00:09,640
scroll down to our footer element,

4
00:00:09,640 --> 00:00:12,820
which we created at the beginning of this module.

5
00:00:12,820 --> 00:00:15,390
And in this photo, we follow actually

6
00:00:15,390 --> 00:00:18,980
kind of the logic we had up here for our highlights.

7
00:00:18,980 --> 00:00:19,813
Again,

8
00:00:19,813 --> 00:00:23,360
we have some kind of content which can be grouped together.

9
00:00:23,360 --> 00:00:27,890
These are our links here containing the images, the icons.

10
00:00:27,890 --> 00:00:28,810
Therefore,

11
00:00:28,810 --> 00:00:32,350
I would get started here again with an unordered list.

12
00:00:32,350 --> 00:00:34,460
We know it, the order doesn't matter here.

13
00:00:34,460 --> 00:00:37,790
And this unordered list now contains what?

14
00:00:37,790 --> 00:00:41,020
Well, it contains two list items,

15
00:00:41,020 --> 00:00:43,920
item one and item two.

16
00:00:43,920 --> 00:00:48,090
And each of these items now contains an anchor tag, right?

17
00:00:48,090 --> 00:00:50,110
It should be a link.

18
00:00:50,110 --> 00:00:52,760
And this link now should refer to well,

19
00:00:52,760 --> 00:00:54,420
Instagram and Facebook.

20
00:00:54,420 --> 00:00:56,950
Let's get started with Instagram first here.

21
00:00:56,950 --> 00:00:58,757
So HTTPS://ww(w.)instagram.com.

22
00:01:05,580 --> 00:01:09,110
So we simply add the entire URL right here

23
00:01:09,110 --> 00:01:10,700
in our quotation marks.

24
00:01:10,700 --> 00:01:14,470
And now the content for this link is not a text like,

25
00:01:14,470 --> 00:01:16,640
well, Instagram or anything like this,

26
00:01:16,640 --> 00:01:20,150
here we'll now add the path to our icons

27
00:01:20,150 --> 00:01:21,840
that we just unzipped.

28
00:01:21,840 --> 00:01:22,673
Therefore,

29
00:01:22,673 --> 00:01:23,670
what we have to do now is

30
00:01:24,570 --> 00:01:28,900
we have to leave the full screen mode for vs code

31
00:01:31,970 --> 00:01:33,450
like this maybe.

32
00:01:33,450 --> 00:01:36,120
And now we take the Facebook image

33
00:01:36,120 --> 00:01:39,720
and open the images icons folder here in vs code.

34
00:01:39,720 --> 00:01:42,500
So we take this image drag and drop it right there.

35
00:01:42,500 --> 00:01:44,630
Now we can also see the image

36
00:01:44,630 --> 00:01:48,500
and we do the same thing with the insta image here.

37
00:01:48,500 --> 00:01:49,700
With that, we can,

38
00:01:49,700 --> 00:01:52,270
if you want to go back to full screen mode

39
00:01:52,270 --> 00:01:54,770
and, maybe, close these two images here,

40
00:01:54,770 --> 00:01:58,230
and now we are back in the index HTML file.

41
00:01:58,230 --> 00:02:00,310
And now we can refer to the image.

42
00:02:00,310 --> 00:02:03,240
For this we have to enter the image element here

43
00:02:05,350 --> 00:02:08,979
and refer to our source, which will be images.

44
00:02:08,979 --> 00:02:11,100
Then here we go to icons

45
00:02:11,100 --> 00:02:14,123
and then we select the Instagram image.

46
00:02:15,880 --> 00:02:19,750
And let me quickly bring this into the next line to improve

47
00:02:19,750 --> 00:02:23,300
the readability and here as texts for screen readers or

48
00:02:23,300 --> 00:02:26,143
in case the image doesn't load correctly.

49
00:02:26,143 --> 00:02:30,050
We simply add maybe Instagram logo here

50
00:02:31,130 --> 00:02:34,630
and with that, our first list item looks all right.

51
00:02:34,630 --> 00:02:38,920
Let's now apply the same logic to our second link here.

52
00:02:38,920 --> 00:02:42,040
So we go to list item at the anchor tag.

53
00:02:42,040 --> 00:02:46,867
Here we go to HTTPS://ww(w.)facebook.com.

54
00:02:53,030 --> 00:02:55,810
And here we now add the image once again,

55
00:02:55,810 --> 00:02:59,640
maybe also edit to that second line to improve the

56
00:02:59,640 --> 00:03:04,640
readability here we go to /images/icons/Facebook.

57
00:03:06,310 --> 00:03:10,423
And the text is Facebook logo.

58
00:03:11,440 --> 00:03:14,443
Let's save this and format this quickly.

59
00:03:15,440 --> 00:03:18,740
And this means our HTML part is finished.

60
00:03:18,740 --> 00:03:21,190
If we quickly check this on our page, you'll see.

61
00:03:21,190 --> 00:03:23,810
Well, nothing because the images are white

62
00:03:23,810 --> 00:03:26,430
but if we go to the footer and open it,

63
00:03:26,430 --> 00:03:29,340
you'll see we have our list items. And somewhere in here,

64
00:03:29,340 --> 00:03:33,580
we should have our icons, but we'll see these soon

65
00:03:33,580 --> 00:03:35,760
once we add some background color.

66
00:03:35,760 --> 00:03:38,070
And that's exactly what we will continue with.

67
00:03:38,070 --> 00:03:40,603
Now, it's time to style our footer.

