All language subtitles for 4. Building the Boilerplate HTML

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French Download
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,360 --> 00:00:01,290 In this video. 2 00:00:01,290 --> 00:00:09,540 What we're going to do is go ahead and build out the HTML template for our baby name generator application. 3 00:00:10,170 --> 00:00:17,520 Now, this over here is not going to contain a lot of view and nux concepts actually is probably going 4 00:00:17,520 --> 00:00:19,410 to contain none whatsoever. 5 00:00:19,800 --> 00:00:26,070 So if you want to skip this section, just go to the branch that I linked on this video and just go 6 00:00:26,070 --> 00:00:28,200 ahead and copy the HTML. 7 00:00:28,530 --> 00:00:31,350 If not, well, let's go ahead and start building it. 8 00:00:31,860 --> 00:00:35,250 So the first thing that we want to do is we want to have an H one. 9 00:00:35,250 --> 00:00:39,420 And this is going to be the title of our application, the name of our app. 10 00:00:39,840 --> 00:00:44,640 The name of our app is, of course, baby name generator like. 11 00:00:44,640 --> 00:00:52,080 So we also have a P tag and this is going to describe the app so we can say choose your options and 12 00:00:52,080 --> 00:00:53,310 click the. 13 00:00:54,590 --> 00:01:03,020 And click the and then over here you can say find names button below like so. 14 00:01:04,010 --> 00:01:08,120 Okay, so we have the title, then we have our little description. 15 00:01:08,120 --> 00:01:14,000 And if we went ahead and save this, you can see we actually see it inside of Logo 3000, which is great. 16 00:01:14,000 --> 00:01:15,170 This is awesome. 17 00:01:15,320 --> 00:01:17,150 Now, of course, the styles are not there yet. 18 00:01:17,150 --> 00:01:19,340 We'll worry about the styles in the next video. 19 00:01:20,240 --> 00:01:20,570 Okay. 20 00:01:20,570 --> 00:01:26,150 So what we're going to do now is we're going to have another div, so let's create another div. 21 00:01:26,690 --> 00:01:28,670 We're going to give this div a class. 22 00:01:28,670 --> 00:01:32,630 We're not going to apply the classes for now, but let's just give it a class. 23 00:01:33,110 --> 00:01:37,700 And over here we're going to say this is going to be the options container. 24 00:01:38,090 --> 00:01:41,690 So we're going to say options container like so. 25 00:01:42,530 --> 00:01:46,310 So this is going to contain all of the different options. 26 00:01:46,670 --> 00:01:51,830 Now I'm also going to create another div and we're going to give that a class and that's going to say 27 00:01:51,830 --> 00:01:53,660 option container. 28 00:01:54,110 --> 00:01:57,350 And so this is going to house one individual option. 29 00:01:57,620 --> 00:02:02,300 So we're going to have multiple options, I think three to be precise, so we can paste that three times. 30 00:02:02,690 --> 00:02:07,730 So the first option over here is choosing the gender. 31 00:02:07,970 --> 00:02:10,010 So it's actually howzat inside of an H1. 32 00:02:10,010 --> 00:02:11,630 So we're going to say or h four. 33 00:02:11,930 --> 00:02:13,940 So we're going to say choose. 34 00:02:15,210 --> 00:02:17,370 Choose a gender. 35 00:02:18,450 --> 00:02:20,940 So that's going to be option number one. 36 00:02:21,540 --> 00:02:26,850 And then right below what we're going to have are a bunch of buttons, of course. 37 00:02:27,690 --> 00:02:32,010 So over here let's actually have a div for this to house all of the different buttons. 38 00:02:32,430 --> 00:02:38,310 So I'm going to call this let's call it option buttons like so. 39 00:02:39,060 --> 00:02:41,710 And then right over here we're going to have a bunch of different buttons. 40 00:02:41,710 --> 00:02:42,510 So button. 41 00:02:42,810 --> 00:02:50,430 So the first option that we have is boy, and then we're going to have another button for unisex. 42 00:02:51,420 --> 00:02:55,770 And then over here we're going to have another button for girl. 43 00:02:56,520 --> 00:02:57,030 Okay? 44 00:02:57,030 --> 00:02:57,930 So that's really good. 45 00:02:58,320 --> 00:03:03,750 So now what we can do here is basically copy what we have here and paste it right in there. 46 00:03:04,650 --> 00:03:06,990 And so now we're going to talk about the other options. 47 00:03:06,990 --> 00:03:08,400 So what's the option? 48 00:03:08,880 --> 00:03:11,730 Well, this one is going to be the popularity of the name. 49 00:03:11,760 --> 00:03:21,810 So over here we can say something like choose the names popularity. 50 00:03:22,440 --> 00:03:22,980 Okay. 51 00:03:22,980 --> 00:03:27,180 And so this is either going to be unique or trendy. 52 00:03:27,660 --> 00:03:28,980 So let's go over here. 53 00:03:29,070 --> 00:03:38,340 Let's say this is trendy and then over here this is going to be unique and we can get rid of this. 54 00:03:39,000 --> 00:03:39,690 Let's get rid of that. 55 00:03:39,990 --> 00:03:42,030 Let's save it so we can get some nice formatting. 56 00:03:42,870 --> 00:03:46,020 So now that leaves us with the very last option. 57 00:03:46,560 --> 00:03:48,570 So let's go ahead and do that. 58 00:03:48,570 --> 00:03:49,500 So we're going to go over here. 59 00:03:49,500 --> 00:03:51,540 We're going to copy what we got right there. 60 00:03:52,900 --> 00:03:54,990 Now this one's going to be the length of the name. 61 00:03:55,000 --> 00:03:59,450 So we're going to say over here, choose the names. 62 00:03:59,470 --> 00:04:00,060 Length. 63 00:04:00,070 --> 00:04:01,720 Choose names, length. 64 00:04:03,280 --> 00:04:04,900 We're going to have three options here. 65 00:04:04,900 --> 00:04:06,130 So let's have another button. 66 00:04:08,960 --> 00:04:13,730 So option number one is going to be longer. 67 00:04:14,570 --> 00:04:16,490 Option number two is going to be all. 68 00:04:16,670 --> 00:04:19,780 And then option number three is going to be short. 69 00:04:20,840 --> 00:04:26,110 So now that is really all it is that we need for our h html. 70 00:04:26,120 --> 00:04:27,410 That's pretty much it. 71 00:04:27,830 --> 00:04:33,920 And if I went ahead and looked at the application, this is actually well, well, this should be a 72 00:04:33,920 --> 00:04:35,390 working HTML template. 73 00:04:35,390 --> 00:04:38,060 You can see that this is really ultimately what we want. 74 00:04:38,540 --> 00:04:45,380 Now, of course, stylistically, this is very ugly, so let's actually work on these styles in the 75 00:04:45,380 --> 00:04:46,520 next video. 6751

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.