Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated:
1
00:00:01,370 --> 00:00:03,830
Welcome to the very last section
2
00:00:03,830 --> 00:00:05,940
of the Omnifood website.
3
00:00:05,940 --> 00:00:07,030
And in this one,
4
00:00:07,030 --> 00:00:10,180
we're going to build a really professional looking footer
5
00:00:10,180 --> 00:00:12,060
like this one.
6
00:00:12,060 --> 00:00:14,790
So we're going to use this design example from the right
7
00:00:14,790 --> 00:00:18,740
side to build a somewhat similar looking footer.
8
00:00:18,740 --> 00:00:21,330
So in the first column we will also have,
9
00:00:21,330 --> 00:00:26,150
our logo, then some social links, and a copyright notice.
10
00:00:26,150 --> 00:00:27,470
Then in the second column,
11
00:00:27,470 --> 00:00:28,355
we're going to have some contact information,
12
00:00:28,355 --> 00:00:32,440
so of the Omnifood company.
13
00:00:32,440 --> 00:00:34,390
And then in the remaining three columns,
14
00:00:34,390 --> 00:00:36,990
there will be some additional links.
15
00:00:36,990 --> 00:00:38,210
So a bit, again,
16
00:00:38,210 --> 00:00:41,730
like here in this design example on the right side.
17
00:00:41,730 --> 00:00:42,563
Okay.
18
00:00:42,563 --> 00:00:43,800
So five columns,
19
00:00:43,800 --> 00:00:47,030
and a really professional looking footer,
20
00:00:47,030 --> 00:00:50,223
and so let's get to work and build this.
21
00:00:52,230 --> 00:00:53,180
Okay.
22
00:00:53,180 --> 00:00:56,800
And so to mark up this footer in the HTML,
23
00:00:56,800 --> 00:01:00,270
we're going to use the footer element for that.
24
00:01:00,270 --> 00:01:03,600
And we will put it not inside of the main element,
25
00:01:03,600 --> 00:01:05,333
but actually outside of it.
26
00:01:06,260 --> 00:01:08,023
So right here,
27
00:01:08,940 --> 00:01:10,500
because remember that
28
00:01:10,500 --> 00:01:12,640
the main area of the website
29
00:01:12,640 --> 00:01:15,080
is for non repeated content
30
00:01:15,080 --> 00:01:17,460
and the footer, as well as the header,
31
00:01:17,460 --> 00:01:21,220
we might repeat them exactly the same on some other pages
32
00:01:21,220 --> 00:01:23,890
that are parts of the overall website.
33
00:01:23,890 --> 00:01:25,690
And so, yeah,
34
00:01:25,690 --> 00:01:29,370
the main part is really only for the part that is specific
35
00:01:29,370 --> 00:01:32,040
to this particular webpage.
36
00:01:32,040 --> 00:01:33,100
Okay.
37
00:01:33,100 --> 00:01:35,090
So again, the footer and the header,
38
00:01:35,090 --> 00:01:38,500
they might be repeated on other pages in case there were
39
00:01:38,500 --> 00:01:42,403
some, and so they are not the main content of the page.
40
00:01:44,420 --> 00:01:46,650
So giving it the class of footer here,
41
00:01:46,650 --> 00:01:48,150
just like I did in the header.
42
00:01:50,380 --> 00:01:54,720
And then here, we will also want some centered container.
43
00:01:54,720 --> 00:01:56,506
And so for that, we use of course
44
00:01:56,506 --> 00:01:59,000
our container class,
45
00:01:59,000 --> 00:02:01,870
and let's also use a grid,
46
00:02:01,870 --> 00:02:05,170
and I think right now we don't have a grid yet
47
00:02:05,170 --> 00:02:06,900
with five columns.
48
00:02:06,900 --> 00:02:10,453
So let's create that really fast here.
49
00:02:13,550 --> 00:02:15,890
And of course, that's really simple.
50
00:02:15,890 --> 00:02:20,890
We just copy this and change this to five,
51
00:02:21,300 --> 00:02:22,563
and this to five.
52
00:02:23,910 --> 00:02:25,470
And so just like this,
53
00:02:25,470 --> 00:02:30,053
we now created a grid which has five equally sized columns.
54
00:02:35,070 --> 00:02:35,943
Okay.
55
00:02:36,780 --> 00:02:40,210
So this first one here is going to have the logo and the
56
00:02:40,210 --> 00:02:42,850
copyright notice and all that.
57
00:02:42,850 --> 00:02:45,823
So let's call this one here the logo column.
58
00:02:48,950 --> 00:02:50,793
So let's just write that here.
59
00:02:51,720 --> 00:02:54,113
Then the second one is for the address.
60
00:02:57,920 --> 00:03:01,080
So I'm calling that one address column,
61
00:03:01,080 --> 00:03:05,100
and I'm not sure yet if I will even need these,
62
00:03:05,100 --> 00:03:06,350
these class names,
63
00:03:06,350 --> 00:03:08,640
but many times as I write the HTML,
64
00:03:08,640 --> 00:03:10,533
I try to immediately name it.
65
00:03:12,170 --> 00:03:14,770
So let's just take a look at our content here again.
66
00:03:16,100 --> 00:03:20,520
So yeah, so here's that contact information.
67
00:03:20,520 --> 00:03:24,570
So we will write the address, the phone number and email.
68
00:03:24,570 --> 00:03:28,650
So right here into the address column that we just created
69
00:03:29,740 --> 00:03:31,720
and these social links here,
70
00:03:31,720 --> 00:03:33,513
they will go into the first column.
71
00:03:34,370 --> 00:03:38,970
Then finally we have also some additional links right here.
72
00:03:38,970 --> 00:03:40,630
So this huge list here,
73
00:03:40,630 --> 00:03:44,120
and so let's try to separate this into some different,
74
00:03:44,120 --> 00:03:45,283
basically, topics.
75
00:03:46,130 --> 00:03:47,823
So create account, sign in
76
00:03:47,823 --> 00:03:50,430
and these applications,
77
00:03:50,430 --> 00:03:54,470
and so I think that we can say that these links here are all
78
00:03:54,470 --> 00:03:56,670
about the user's account.
79
00:03:56,670 --> 00:03:59,950
So I'm going to basically create a subsection of the
80
00:03:59,950 --> 00:04:02,103
navigation called account.
81
00:04:03,250 --> 00:04:08,053
Then these four here are about the Omnifood company itself.
82
00:04:09,290 --> 00:04:12,900
So basically a page describing what Omnifood is,
83
00:04:12,900 --> 00:04:14,910
then Omnifood for business,
84
00:04:14,910 --> 00:04:17,860
and partners, and careers.
85
00:04:17,860 --> 00:04:21,080
And then finally here are some resources, for example,
86
00:04:21,080 --> 00:04:24,973
where the user can find a directory or some other help.
87
00:04:26,050 --> 00:04:29,030
So here is where we will have now three columns,
88
00:04:29,030 --> 00:04:33,103
one for each of these sub navigations, let's say.
89
00:04:34,610 --> 00:04:38,610
So let's create three more columns here,
90
00:04:38,610 --> 00:04:40,360
and I'm going to call this one here
91
00:04:41,840 --> 00:04:43,223
a nav col.
92
00:04:46,100 --> 00:04:49,800
And actually since this will be basically a navigation,
93
00:04:49,800 --> 00:04:52,423
let's use the nav element here,
94
00:04:54,791 --> 00:04:55,853
and then two more,
95
00:04:57,220 --> 00:04:59,130
so two and three,
96
00:04:59,130 --> 00:05:01,360
so this is just so we can see something
97
00:05:01,360 --> 00:05:02,923
on our page right now,
98
00:05:04,550 --> 00:05:06,670
but before we go check that out,
99
00:05:06,670 --> 00:05:08,960
let's, as always, add some padding here
100
00:05:08,960 --> 00:05:10,453
to that section first.
101
00:05:11,950 --> 00:05:14,303
So copying that once more,
102
00:05:15,710 --> 00:05:18,673
then footer, and here,
103
00:05:19,510 --> 00:05:20,423
footer as well.
104
00:05:21,550 --> 00:05:22,533
So let's see.
105
00:05:25,860 --> 00:05:27,300
And there it is.
106
00:05:27,300 --> 00:05:30,373
So there are five equally sized columns.
107
00:05:32,000 --> 00:05:35,690
So that's now add the actual content here very quick.
108
00:05:35,690 --> 00:05:38,090
So here we want the logo.
109
00:05:38,090 --> 00:05:41,440
And so let's actually get that from the header.
110
00:05:41,440 --> 00:05:43,640
So I'm going to go all the way up,
111
00:05:43,640 --> 00:05:47,940
and I noticed we have together here written over 600 lines
112
00:05:47,940 --> 00:05:49,980
of HTML code.
113
00:05:49,980 --> 00:05:51,863
So that's really a great job,
114
00:05:53,210 --> 00:05:54,160
but anyway,
115
00:05:54,160 --> 00:05:55,750
here is that logo.
116
00:05:55,750 --> 00:06:00,230
But before I copy this, let me actually wrap it into a link.
117
00:06:00,230 --> 00:06:02,250
So into an anchor tag,
118
00:06:02,250 --> 00:06:04,690
which is something that we do all the time
119
00:06:04,690 --> 00:06:06,520
with logos in the header.
120
00:06:06,520 --> 00:06:09,230
And so this will be so that when we click that logo,
121
00:06:09,230 --> 00:06:11,460
we will go back to the top.
122
00:06:11,460 --> 00:06:12,293
And this is something
123
00:06:12,293 --> 00:06:14,623
that we will implement a little bit later.
124
00:06:15,520 --> 00:06:17,500
So for now let's just say
125
00:06:18,650 --> 00:06:19,890
nothing here,
126
00:06:19,890 --> 00:06:21,023
so going nowhere,
127
00:06:22,580 --> 00:06:24,800
and yeah,
128
00:06:24,800 --> 00:06:26,140
let's just check this out
129
00:06:27,620 --> 00:06:29,180
here in the top now.
130
00:06:29,180 --> 00:06:31,370
And you see, it looks exactly the same,
131
00:06:31,370 --> 00:06:33,120
but it is now a link.
132
00:06:33,120 --> 00:06:34,603
And so when we click this,
133
00:06:34,603 --> 00:06:37,690
we go, basically back to the top,
134
00:06:37,690 --> 00:06:38,830
right?
135
00:06:38,830 --> 00:06:41,570
And so now we will want the exact same thing
136
00:06:41,570 --> 00:06:42,663
also in the footer.
137
00:06:45,070 --> 00:06:47,730
So later we will then implement some smooth scrolling
138
00:06:47,730 --> 00:06:49,040
functionality,
139
00:06:49,040 --> 00:06:52,793
which will happen once user clicks this logo.
140
00:06:54,770 --> 00:06:55,810
All right?
141
00:06:55,810 --> 00:07:00,810
Here, let's just give it a class of footer logo,
142
00:07:01,080 --> 00:07:01,913
let's say,
143
00:07:03,200 --> 00:07:06,170
but the rest here of the image can stay the same.
144
00:07:06,170 --> 00:07:09,120
So we are actually reusing this logo class here,
145
00:07:09,120 --> 00:07:11,470
because I think that the size of it
146
00:07:11,470 --> 00:07:13,303
is also good for the footer.
147
00:07:15,580 --> 00:07:18,560
So here, I think this doesn't look too big.
148
00:07:18,560 --> 00:07:21,810
And so we can use that exact same class that we also used in
149
00:07:21,810 --> 00:07:23,180
the header.
150
00:07:23,180 --> 00:07:26,580
So that is basically now reusable.
151
00:07:26,580 --> 00:07:29,560
So while we could move that class
152
00:07:29,560 --> 00:07:31,940
to the general.CSS file,
153
00:07:31,940 --> 00:07:33,853
but let's not do that right now.
154
00:07:34,830 --> 00:07:37,003
So instead what I want to do next here,
155
00:07:37,870 --> 00:07:41,150
is to add a paragraph,
156
00:07:41,150 --> 00:07:43,120
and actually before the paragraph,
157
00:07:43,120 --> 00:07:45,590
so between the logo and the paragraph,
158
00:07:45,590 --> 00:07:49,420
is where I will want to put these icons for social links.
159
00:07:49,420 --> 00:07:53,540
So like Facebook, Instagram, Twitter, and all that.
160
00:07:53,540 --> 00:07:55,740
But I'm going to leave that for a bit later.
161
00:07:57,530 --> 00:08:00,240
So copyright,
162
00:08:00,240 --> 00:08:03,963
let's just write some standard copyright text here.
163
00:08:05,370 --> 00:08:10,370
So copyright and here let's use yet another HTML entity.
164
00:08:11,700 --> 00:08:14,730
So the copy one, in this case,
165
00:08:14,730 --> 00:08:18,163
so as you can see, it will create this copyright sign.
166
00:08:19,040 --> 00:08:23,870
So that looks quite nice, and then let's say 2027.
167
00:08:23,870 --> 00:08:26,750
And hopefully by the time you're watching this video,
168
00:08:26,750 --> 00:08:28,910
this year is not correct,
169
00:08:28,910 --> 00:08:32,463
but we will also fix that later actually using JavaScript.
170
00:08:34,170 --> 00:08:36,898
So I will show you how we can actually very easily
171
00:08:36,898 --> 00:08:39,023
keep that year up to date.
172
00:08:40,690 --> 00:08:43,120
So just all rights reserved,
173
00:08:43,120 --> 00:08:46,410
even though this doesn't mean a lot legally,
174
00:08:46,410 --> 00:08:48,483
but it always looks nice, I think.
175
00:08:50,390 --> 00:08:51,990
Okay.
176
00:08:51,990 --> 00:08:52,823
So again,
177
00:08:52,823 --> 00:08:55,580
we're leaving the social links for later and now let's take
178
00:08:55,580 --> 00:08:57,403
care of the address here.
179
00:08:59,570 --> 00:09:01,190
All right.
180
00:09:01,190 --> 00:09:03,663
So let me grab that here.
181
00:09:07,980 --> 00:09:12,160
And so of course we will not just paste it here and leave it
182
00:09:12,160 --> 00:09:13,200
like this,
183
00:09:13,200 --> 00:09:16,343
but instead we need to wrap it into some elements.
184
00:09:17,210 --> 00:09:18,560
But before we do that,
185
00:09:18,560 --> 00:09:22,050
let's actually also add some kind of header here to this
186
00:09:22,050 --> 00:09:23,410
column.
187
00:09:23,410 --> 00:09:25,210
But once more for that,
188
00:09:25,210 --> 00:09:28,140
we will actually not use an H element,
189
00:09:28,140 --> 00:09:30,513
but simply a P element like this.
190
00:09:31,440 --> 00:09:33,610
So this is not really a new section,
191
00:09:33,610 --> 00:09:37,910
so it doesn't deserve basically its own actual heading
192
00:09:37,910 --> 00:09:38,743
element.
193
00:09:41,690 --> 00:09:44,393
So that would semantically not be really correct.
194
00:09:46,640 --> 00:09:48,600
So contact us,
195
00:09:48,600 --> 00:09:52,270
and then below that we can wrap this entire information here
196
00:09:52,270 --> 00:09:55,453
into a special HTML element called address.
197
00:09:58,530 --> 00:10:02,159
So this element is basically for contact information of the
198
00:10:02,159 --> 00:10:03,410
page,
199
00:10:03,410 --> 00:10:06,443
so it's exactly what we are looking for here.
200
00:10:08,050 --> 00:10:09,393
So contacts,
201
00:10:11,140 --> 00:10:15,280
and so now let's wrap each of these here into a paragraph.
202
00:10:15,280 --> 00:10:16,113
Now,
203
00:10:16,113 --> 00:10:19,137
of course we will not literally write address here because,
204
00:10:19,137 --> 00:10:22,700
while this is pretty obvious that it is an address,
205
00:10:22,700 --> 00:10:25,300
we could use maybe some icon,
206
00:10:25,300 --> 00:10:27,133
but even that is not necessary.
207
00:10:30,120 --> 00:10:30,953
Okay.
208
00:10:33,880 --> 00:10:35,910
Now this phone here is for the next one
209
00:10:35,910 --> 00:10:37,743
which we also don't need.
210
00:10:40,830 --> 00:10:42,150
Okay.
211
00:10:42,150 --> 00:10:44,833
So let's create one paragraph for each of them.
212
00:10:46,860 --> 00:10:47,770
And now here
213
00:10:47,770 --> 00:10:49,423
let me show you something cool,
214
00:10:50,810 --> 00:10:53,960
because here we can now basically make this phone number
215
00:10:53,960 --> 00:10:55,083
also a link.
216
00:10:56,100 --> 00:10:57,950
So let me grab that here.
217
00:10:57,950 --> 00:11:00,830
And then we can create a special kind of link
218
00:11:00,830 --> 00:11:02,700
so we can write tel,
219
00:11:02,700 --> 00:11:03,910
and then colon,
220
00:11:03,910 --> 00:11:05,463
and then here the phone number,
221
00:11:09,040 --> 00:11:11,473
and the same for the email,
222
00:11:12,650 --> 00:11:15,693
and I will then show you soon what this actually does.
223
00:11:20,020 --> 00:11:21,600
So here instead of tel,
224
00:11:21,600 --> 00:11:25,443
because it's not a telephone number, we can write mail too.
225
00:11:29,360 --> 00:11:32,550
So this is now the H ref, and it's also the text that we
226
00:11:32,550 --> 00:11:35,440
want to show up on the page.
227
00:11:35,440 --> 00:11:36,273
All right.
228
00:11:37,600 --> 00:11:39,580
So let's check that.
229
00:11:39,580 --> 00:11:41,260
And while, if we click this now,
230
00:11:41,260 --> 00:11:44,600
then since we're on a browser, nothing should happen.
231
00:11:44,600 --> 00:11:49,560
Or let me see, oh, actually it's trying to FaceTime it now,
232
00:11:49,560 --> 00:11:52,930
which is basically a way of making a phone call.
233
00:11:52,930 --> 00:11:56,170
And if I were to click here on this email,
234
00:11:56,170 --> 00:11:59,650
then it's probably going to open up my email program,
235
00:11:59,650 --> 00:12:01,440
and you see that it did,
236
00:12:01,440 --> 00:12:05,453
and it is trying to write an email to hello@omnifood.com.
237
00:12:09,010 --> 00:12:09,843
All right.
238
00:12:09,843 --> 00:12:13,123
So that's exactly the H ref that we defined there,
239
00:12:14,920 --> 00:12:15,753
right?
240
00:12:15,753 --> 00:12:19,730
So it opened the email program because of this mail too here
241
00:12:19,730 --> 00:12:23,010
and it opened the phone application basically because of the
242
00:12:23,010 --> 00:12:23,890
tel.
243
00:12:23,890 --> 00:12:28,240
And so this is not really that helpful, maybe on a computer,
244
00:12:28,240 --> 00:12:29,150
but on a phone,
245
00:12:29,150 --> 00:12:32,150
when you tap a link that is formatted like this,
246
00:12:32,150 --> 00:12:35,623
it will then very easily make a phone call to this number.
247
00:12:37,789 --> 00:12:41,820
Now you noticed these two links here are side-by-side.
248
00:12:41,820 --> 00:12:44,660
So let's add a line break there,
249
00:12:44,660 --> 00:12:48,160
and I'm actually not sure if we have done that before,
250
00:12:48,160 --> 00:12:49,620
but anyway,
251
00:12:49,620 --> 00:12:52,130
the way we manually add a line break
252
00:12:52,130 --> 00:12:55,500
is by using the BR element.
253
00:12:55,500 --> 00:12:58,290
So that's stands simply for break.
254
00:12:58,290 --> 00:13:01,443
And so now they will be in two different lines here.
255
00:13:02,770 --> 00:13:03,603
Okay.
256
00:13:04,500 --> 00:13:06,133
So that looks perfect.
257
00:13:07,290 --> 00:13:09,733
And so let's move on to the next column here.
258
00:13:12,690 --> 00:13:16,723
So let's grab these four here.
259
00:13:19,290 --> 00:13:20,473
Yeah. So right here.
260
00:13:23,710 --> 00:13:25,410
So let's add here another
261
00:13:25,410 --> 00:13:28,240
footer heading
262
00:13:30,890 --> 00:13:31,723
and this one here,
263
00:13:31,723 --> 00:13:34,970
remember we said was about the account
264
00:13:34,970 --> 00:13:37,820
and now let's create the actual navigation.
265
00:13:37,820 --> 00:13:41,600
And do you remember how we did that in the header?
266
00:13:41,600 --> 00:13:45,400
So we did not simply add a bunch of links one after another.
267
00:13:45,400 --> 00:13:46,260
Right?
268
00:13:46,260 --> 00:13:50,240
But instead what we did was to structure them nicely
269
00:13:50,240 --> 00:13:52,333
using the unordered list.
270
00:13:56,430 --> 00:14:00,043
And so let's call this one here the footer navigation,
271
00:14:02,270 --> 00:14:05,683
and then in there, of course, a bunch of list elements,
272
00:14:07,300 --> 00:14:10,083
and let's put these here.
273
00:14:11,300 --> 00:14:15,114
And of course now inside of these is where we will put the
274
00:14:15,114 --> 00:14:16,373
actual links.
275
00:14:17,730 --> 00:14:18,563
So again,
276
00:14:18,563 --> 00:14:21,900
exactly like we did also in the main navigation
277
00:14:21,900 --> 00:14:23,453
that's on top of the page.
278
00:14:25,619 --> 00:14:27,693
So this one is for create account.
279
00:14:31,150 --> 00:14:33,963
And then let's simply duplicate this a couple of times,
280
00:14:40,230 --> 00:14:43,940
then here is the iOS app
281
00:14:43,940 --> 00:14:46,463
and it's even easier to write it then to copy it,
282
00:14:48,570 --> 00:14:50,193
and the Android app.
283
00:14:55,190 --> 00:14:57,303
So let's see if that looks correct.
284
00:14:58,370 --> 00:15:00,530
And it does indeed.
285
00:15:00,530 --> 00:15:05,330
So now we have a nice and structured navigation list right
286
00:15:05,330 --> 00:15:06,200
here,
287
00:15:06,200 --> 00:15:08,563
and so let's do the same for the other two.
288
00:15:09,480 --> 00:15:10,600
So in fact,
289
00:15:10,600 --> 00:15:12,883
I will simply copy this entire nav,
290
00:15:14,420 --> 00:15:16,373
and then replace these two.
291
00:15:20,520 --> 00:15:24,123
All right, let's get the next four.
292
00:15:29,400 --> 00:15:30,693
So that's the first,
293
00:15:31,980 --> 00:15:33,923
then here is for business,
294
00:15:39,459 --> 00:15:41,126
and finally careers.
295
00:15:48,280 --> 00:15:52,093
Oh and here, we also want to change the title to company.
296
00:15:55,540 --> 00:15:56,573
All right?
297
00:15:57,700 --> 00:16:00,923
Oh, actually, this is what we wanted in this one.
298
00:16:02,480 --> 00:16:05,723
So let's grab all of this and move it up there.
299
00:16:06,860 --> 00:16:09,543
So I just cut it and paste it here.
300
00:16:11,540 --> 00:16:14,923
And now let's get the last three from here,
301
00:16:21,320 --> 00:16:23,840
help center,
302
00:16:23,840 --> 00:16:26,160
and of course the privacy and terms,
303
00:16:26,160 --> 00:16:30,660
which are very important on basically most websites
304
00:16:30,660 --> 00:16:31,493
out there.
305
00:16:32,980 --> 00:16:35,823
And I didn't cut it here,
306
00:16:38,170 --> 00:16:42,603
and let's just call this section here the resources.
307
00:16:44,100 --> 00:16:47,460
All right, let's go back down
308
00:16:47,460 --> 00:16:49,113
and here we go.
309
00:16:49,970 --> 00:16:53,880
So that looks nice, except of course for all the formatting,
310
00:16:53,880 --> 00:16:56,200
but the content is already here.
311
00:16:56,200 --> 00:16:57,460
So all the content,
312
00:16:57,460 --> 00:17:01,150
except for those social icons that I mentioned before,
313
00:17:01,150 --> 00:17:04,030
and so let's now add them here between the logo
314
00:17:04,030 --> 00:17:05,403
and that text.
315
00:17:06,880 --> 00:17:08,400
So let's do that now.
316
00:17:08,400 --> 00:17:09,470
And once more,
317
00:17:09,470 --> 00:17:12,670
we can consider that a list of links.
318
00:17:12,670 --> 00:17:13,850
And so once again,
319
00:17:13,850 --> 00:17:16,953
we will use the unordered list for that.
320
00:17:22,230 --> 00:17:25,810
So calling it the social links
321
00:17:30,090 --> 00:17:31,720
and since they are links,
322
00:17:31,720 --> 00:17:35,133
let's create, again, an anchor element.
323
00:17:39,060 --> 00:17:42,580
And now we just need some content in this link.
324
00:17:42,580 --> 00:17:45,570
So what is that content going to be?
325
00:17:45,570 --> 00:17:46,403
Well,
326
00:17:46,403 --> 00:17:48,770
we're going to use some icons here for each
327
00:17:48,770 --> 00:17:50,290
of the social links.
328
00:17:50,290 --> 00:17:53,623
So one for Instagram, I think.
329
00:17:55,700 --> 00:17:58,503
Yeah. So Instagram, Facebook and Twitter.
330
00:17:59,760 --> 00:18:03,170
So let's actually get that here from ionicons,
331
00:18:03,170 --> 00:18:06,793
because these usually have all the social links included.
332
00:18:07,930 --> 00:18:11,283
So Instagram, and there we go.
333
00:18:12,960 --> 00:18:14,693
So let's click to copy.
334
00:18:20,870 --> 00:18:24,303
And so that should now be there and indeed it is.
335
00:18:25,920 --> 00:18:30,513
So let's just do the same two more times.
336
00:18:37,510 --> 00:18:41,853
So Facebook and probably the next one we can already guess.
337
00:18:43,470 --> 00:18:44,303
So here, actually,
338
00:18:44,303 --> 00:18:47,620
we can just replace Instagram with Facebook,
339
00:18:47,620 --> 00:18:49,223
and here with Twitter,
340
00:18:51,730 --> 00:18:53,490
that should work.
341
00:18:53,490 --> 00:18:56,910
And yeah, those are the three we were looking for.
342
00:18:56,910 --> 00:19:00,570
And so with this, we finished the content part.
343
00:19:00,570 --> 00:19:03,510
So the HTML is written here for our footer,
344
00:19:03,510 --> 00:19:06,770
but of course it doesn't look anything like professional
345
00:19:06,770 --> 00:19:07,603
yet.
346
00:19:07,603 --> 00:19:10,420
And so let's take care of writing the CSS
347
00:19:10,420 --> 00:19:13,653
in the next and final lecture of this section.
24203
Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.