Bootstrap CSS Framework - Full Course for Beginners

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 516

  • @rockymdee
    @rockymdee Рік тому +199

    Very great tutorial., thank you. See below breakdown of tutorial
    What is bootstrap (0:00 - 4:30)
    Installation/setup (4:30 - 14:56)
    Bootstrap grid (14:56 - 37:31)
    Bootstrap components discussed are
    - buttons (37:31 - 42:38)
    - cards (42:38 - 57:53)
    - typography (57:53 - 1:12:37)
    - responsive images (1:12:37 - 1:18:25)
    - utilities (1:18:25 - 1:37:52)
    - tables (1:37:52 - 1:41:44)
    - alerts (1:41:44 - 1:50:08)
    - navs and navbars (1:50:08 - 2:04:58)
    - icons (2:04:58 - 2:09:14)
    - forms (2:09:14 - 2:20:54)
    - other components (2:20:54 - 2:30:30)
    Let's build a webpage (2:30:30 - 2:46:21)
    Thanks again Codecademy.
    Goodluck everybody

  • @uchejordy3255
    @uchejordy3255 Рік тому +37

    Thank you for such a wonderful tutorial from scratch for beginners. He goes over the entire thing, shows you many tricks and teaches how to apply your own touch to whatever you're doing. If any need, simply pause, process, practice and play with things yourself before continuing.

  • @leslieabayo9128
    @leslieabayo9128 Рік тому +10

    I used to think that copying code snippets from bootstrap's website would build some guilt in me but after seeing this I've learnt that it's not a bad thing to do as long as you understand what that particular line does.

  • @atilist5296
    @atilist5296 2 роки тому +49

    Thank you so much - for the first time I get the whole concept of bootstrap. And you guide us perfectly through the whole process. That was more than worth it to become a supporter!

  • @IroshanaRavishan
    @IroshanaRavishan 7 місяців тому +2

    I Really recommend this video for any beginners. The explanation and the clearance of the content is perfect...!

  • @michal3833
    @michal3833 2 роки тому +137

    This is the best tutorial for beginners! and the fact that you go over the documentation makes it so much better and easy to continue learning on our own. Thank you so much!

  • @alok.01
    @alok.01 2 роки тому +36

    Man! This course came out right when I needed it.

    • @Mdbootstrap
      @Mdbootstrap 2 роки тому +4

      That's great to hear! We hope this tutorial is helpful to you 🙂

  • @TomHerriman
    @TomHerriman 2 роки тому +14

    I'm getting back into web programming after 20+ years away. This video is very eye opening and I have certainly learned a lot in these 3 hours! VSC, Emmet, Bootstrap... very enlightening!
    That said, this bootstrap thing is interesting but... I'm not sold. There is an awful lot of extra work for what seems to be added limits. I have to learn how to use SASS in order to customize BS which is a limit on css?
    Why not just learn css and make it work?
    Is the only benefit to BS found in the flexible containers? Certainly Bootstrap is not the only way to program cross device flex.
    In BS, some of the more simple tasks, like keeping an A tag link from turning blue, are not so easy to accomplish when compared to a simple style or css application. For the life of me, I can't figure out how to do this in BS.
    I tried playing with the navbars, but really don't like the rigid and very limited aesthetics.
    I prefer the ability to use links because they offer much greater flexibility, but in BS, I can't figure out how to apply a style that keeps that god awful blue link from showing up during hover.

    • @garethnel4019
      @garethnel4019 2 роки тому +1

      should try tailwind css

    • @Programming_Geek
      @Programming_Geek Рік тому +1

      You can use another additional css file or files in addition to the bootstrap css file to customize the stuff that is hard to customize using bootstrap

    • @Degenerated00
      @Degenerated00 8 місяців тому

      What did you end up using?
      I think that Bootstrap's main sell point is that ease of making responsive elements. Using 4 different @media tags would be horrible.

  • @arinspanner
    @arinspanner Рік тому +3

    Now that's what I call Bootstrap. I'm strapping on my boots and I'm ready to hike the path of web development.

  • @E_Hooligan
    @E_Hooligan Рік тому +8

    0:00 Popper js is needed to make popups
    19:39 Breakpoints set the width for containers in different devices, inside these, rows and columns go
    27:11 You can set different width for a column than its siblings with breaking points
    30:08 Mix and match colsizes in the same class div so that they work in different cases and make a flexible website
    32:52 Rows can be aligned
    Gutters can be used for spacing
    40:35 Buttons and elements can be resized depending on specific and similar class names
    40:47 Buttons can also have a "disabled" status in which they arent active until a condition happens (boolean)
    52:22 Cards, which can display items, can be grouped using card groups (alternative to setting cols of the same size)
    1:14:20 Images can be made responsive with "img-fluid" so that they scale with the parent div
    1:23:17 Coloring for text
    1:32:11 There are also utility classes with Flexbox
    1:41:08 Tables can be made with , table headings with and table data elements with

    • @anonymousme3571
      @anonymousme3571 6 місяців тому

      Oh. My. God. You are a life saver, tq so much

  • @odwambombo6829
    @odwambombo6829 2 роки тому +4

    This man is good he just made bootstraps look easy, I really appreciate what you did man.

  • @mykalimba
    @mykalimba 2 роки тому +73

    Seems like the sections on "download local installation" vs "download from CDN" vs "install via npm" could use some elaboration on when/why you would want to use one approach vs another. In some of these methods, you will pay for the outbound traffic when serving these files (would most newbie devs know which ones?). If your website is popular, that could be millions of servings a day.

    • @jitxhere
      @jitxhere 2 роки тому +24

      CDN is the good choice.
      Firstly it will save the bandwidth
      And secondly there's high chances that your visitor have bootstrap downloaded and cached (because many sites use it)... So that will make site load faster

    • @mykalimba
      @mykalimba 2 роки тому +13

      @@jitxhere Yep, for applications/websites served on the internet, I 100% agree with this. One reason you might want to serve the CSS/JS files yourself is when you have an application/website running on a local network (corporate intranet, home network, etc.), where you don't want to rely on internet access (or some other network that simply can not see the internet). Otherwise, I think CDN is the wisest option.

  • @michaelokpalaoguchi4056
    @michaelokpalaoguchi4056 2 роки тому +3

    this is the best tutorial on bootstrap, I have ever seen. Thanks and KUDOS!

  • @piyusharyaprakash4365
    @piyusharyaprakash4365 2 роки тому +3

    Just what I wanted
    I was searching all over and this came in

  • @AleksandreVakhania
    @AleksandreVakhania Рік тому

    Three things are necessary for humanity. Health, freedom, and time. Effective use of time. Good Job.

  • @paperairplanestomake1323
    @paperairplanestomake1323 2 роки тому +34

    This tutorial makes it sooooo much easier to use bootstrap! Great Work

  • @pandeynikhilone
    @pandeynikhilone 3 місяці тому +1

    I really got a lot of idea from this awesome tutorial.

  • @RashidAlesgerov
    @RashidAlesgerov 2 роки тому +73

    It's a good tutorial if you're already familiar with Bootstrap and want to expand your knowledge. For a newbie, it's not. He skips a lot of parts, copy+paste(I'm not saying it's bad but at least tell me what you do) a lot and sometimes doesn't even say where he copied from. The screen size is too small, so you can't follow. Besides, he doesn't talk much when he codes. Hence, you can't code with him side by side. Because unless you look at his code, you don't know what's he doing. Again, I appreciate the effort but then please don't put "for beginners" on the title, because it's clearly not.

    • @hhhhhhhhhhhhhhhhh159
      @hhhhhhhhhhhhhhhhh159 2 роки тому +4

      true i thought the same i mean the first 20 minutes was okay and then falling completly off by just going around with what you already said

    • @littlewonder8641
      @littlewonder8641 2 роки тому +5

      Absolutely true. Within 8 minutes of watching tutorial, I was also surprising the way of teaching and presenting the material. Then I started to look the comment and found this comment exactly matching my feeling toward this course. I also think it is not for beginners.

    • @hirangipandya6795
      @hirangipandya6795 2 роки тому +1

      This had to be said!

    • @kevwlew
      @kevwlew Рік тому +4

      You could not have said it any better! He's teaching is not good. Of course he knows the material, but the teaching is pretty bad.

    • @fafirita2049
      @fafirita2049 Рік тому +3

      Very true,the screen size is too small like i can't follow

  • @zabantak4053
    @zabantak4053 3 місяці тому +1

    I don't know what's wrong with some people here nagging. If you are a real software engineer you can pay a very close attention to all the details to find your answer . He is not required to say the details because it's time_consuming . And you all know the basics about html,css and java script what's more, he doesn't need to reduce his speed nor mentioning all the details . I love this tutorial, unlike other tutorials this one was perfect because it wasn't about creating a project, it was about learning the elements of bootstrap, I think building a project is also a waste of time just learning matters . Thank you my friend hope i see more work of you

  • @dikumon1678
    @dikumon1678 2 роки тому +24

    Here I spent more than 2 weeks to learn bootstrap and here this guy taught it in just 3 hours 😢

  • @monkyout
    @monkyout Рік тому

    Thank you very much for this tutorial. It's so easy because every class has the same pattern. For someone who can't understand this tutorial, I suggest playing with it by exploring their docs by yourself before going to the next step.

  • @nilaygala4194
    @nilaygala4194 2 роки тому +1

    best tutorial for beginners to get started but also know all the stuff that exists in bootstrap
    He has included everything he could

  • @khadarAhmedFarah
    @khadarAhmedFarah 2 роки тому +5

    Thanks for very elaborative tutorial. As a first-timer, I gained a lot of knowledge regarding Bootstrap.

  • @lumbardhsallauka5608
    @lumbardhsallauka5608 2 роки тому +7

    Thank u so much, explaining so clearly in each way, easily understood. Keep the good work up !!!

  • @priskasama
    @priskasama 2 роки тому +2

    For some reasons I was struggling so much with Bootstraps, and your tutorial really helped me understand how it works. Thank you for going through the major points !

    • @ldristt
      @ldristt 2 роки тому

      hi there! I'm still stuck on css and don't know what to do, like I've lost my motivation this days..watching to this tutorials don't help me sometimes when it comes to code i don't remember anything, bootstrap can do anything for this, or? can u help to solve this issue please? I would be happy :)

  • @jenniferperez4144
    @jenniferperez4144 2 роки тому +11

    Thank you sooo much. Such a good video and tutorial. I love your teaching style. So easy to understand and do. Thank you!

  • @Pitchulila
    @Pitchulila 2 роки тому +66

    Omg I was just struggling with Bootstrap and this came out 🙏🏻🌠

    • @Mdbootstrap
      @Mdbootstrap 2 роки тому +2

      That's great to hear! We hope this tutorial is helpful to you 🙂

    • @electrolyteorb
      @electrolyteorb 2 роки тому

      Are you a student. If so, then feel free to contact me

  • @faizansiddique2447
    @faizansiddique2447 4 місяці тому

    Excellent video and I'm very thankful to all of you.

  • @robertfredrick6565
    @robertfredrick6565 2 роки тому +3

    This is the best tutorial ever it really helped me understand Bootstrap in a matter of hours, keep up the good work. I love it💯💯👍

  • @DearyOmar-h4f
    @DearyOmar-h4f 3 місяці тому +1

    it is a great tutorial for beginner thanks code camp

  • @danielblaney6973
    @danielblaney6973 8 місяців тому

    Absolutely incredible tutorial, so much better than the one I got in university that I'm paying nearly £5k a year for

  • @MarsIfeanyi
    @MarsIfeanyi 2 роки тому

    Best Tutorial for Beginners. I highly recommend it to anyone who wants to learn Bootstrap. This is the real Gem♥♥♥

  • @alexanderrydberg6118
    @alexanderrydberg6118 2 роки тому +1

    I love how he explains something basic like opening console but not the kb shortcut he used to get the live server

  • @Anon_Byte
    @Anon_Byte Рік тому

    thanks so much dude. you made bootstrap easy for upcoming web developers.

  • @christophercampbell3161
    @christophercampbell3161 2 роки тому +4

    Awesome breakdown!! Can you please show how to make a column that spans multiple rows in Bootstrap? So more height in the column

  • @carlcodjoe
    @carlcodjoe Рік тому

    With regards to the col, I think because it’s named in the class as col when you change it in the style you don’t get the necessary results you ought to, please recheck the Grid system

  • @sethjets4687
    @sethjets4687 2 роки тому +1

    Thank you very much FCC for bringing so much material constantly

  • @mon0theist_tv
    @mon0theist_tv Рік тому

    This has been super helpful, thank you. I was having trouble understanding the documentation.

  • @yogiyokomizo
    @yogiyokomizo Рік тому

    Amazing course. It's mind blowing what I can do with Bootstrap now

  • @DesazMusicYt
    @DesazMusicYt 10 місяців тому +2

    Would be cool if it had some excercises to go along with it

  • @EmiliaKaida
    @EmiliaKaida 2 роки тому +54

    Would love a future tailwind tutorial!

  • @RonyTheRhombus.
    @RonyTheRhombus. Рік тому +5

    This is great, I love that you worked from the documentation and gave a really good example at the end. Found it so useful for my course! Thank you!

  • @robertmaxwell6401
    @robertmaxwell6401 2 роки тому +3

    Thanks for the tutorial it helped me learn Bootstrap real quick. Big up man! Keep up the nice work

  • @mohdsajid2517
    @mohdsajid2517 8 місяців тому +1

    Crash course tutorial is good, but font are little bit low that's why having difficulty to view the code in video.

  • @СветланаАфонина-х4д

    Лучший туториал из всех, что мне попадались!

  • @hisharapiyumal9331
    @hisharapiyumal9331 Рік тому +1

    Great tutorial for beginners! you explained all the concepts very clearly. Thanks!

  • @aroobazaman2939
    @aroobazaman2939 Рік тому

    I loved the flow and all the things were summed up to be simply perfect ... Thank you very much

  • @hectorgancedograde5137
    @hectorgancedograde5137 2 роки тому +7

    Great tutorial, thank you so much for your explanations and for sharing your knowledge

  • @tahielgomez
    @tahielgomez Рік тому +2

    this guy looks like tom hardy .great tutorial by the way

  • @anonymousme3571
    @anonymousme3571 6 місяців тому

    What're the advantages/disadvantages of the different installation setups? I'm just starting my web developing journey,so I'm unsure which method I should use :')

  • @JuliLukiKon
    @JuliLukiKon Рік тому

    Thank you very much for this very detailed explanation!
    I think, now i understand, how to use bootstrap. Will try it out and comment again, as soon as i got results 👍

  • @olavictor6286
    @olavictor6286 Рік тому

    Great tutorial, now I can proudly add bootstrap to my portfolio

  • @joeytso8734
    @joeytso8734 2 роки тому +8

    Thank you for this tutorial. It’s so comprehensive and beginner friendly.

    • @pitermadepaker9787
      @pitermadepaker9787 2 роки тому +4

      For me it's a bit to fast as i am a beginner to catch up what his doing

  • @khalidazhari6850
    @khalidazhari6850 Рік тому +1

    you guys are the best. thank you!

  • @منوع-ج1ص
    @منوع-ج1ص Місяць тому +1

    I am arabian man I can understand you because you talk slowly❤

  • @NovaDev117
    @NovaDev117 Рік тому

    Great tutorial, Your explanation was wonderful.

  • @yil.summer
    @yil.summer Рік тому +1

    This one is so nice! I hope there is one where you can teach with an example project!

  • @pasindudanthanarayana8828
    @pasindudanthanarayana8828 2 роки тому +8

    Thank you so much! Great intructor, explained all the concepts very clearly. Definitely going to be using bootstrap in future projects!

  • @Faizullah_Sayyed
    @Faizullah_Sayyed 2 роки тому +1

    I have low internet connection so, I cant watch your videos on high settings. Can you make upcoming videos texts more bigger. It is a request. By the thank you for your tutorial 😀😀.

  • @petyap7600
    @petyap7600 2 роки тому +4

    You read my thoughts!

    • @Mdbootstrap
      @Mdbootstrap 2 роки тому +1

      Almost like some kind of superhero 😅😂

  • @alibadra5367
    @alibadra5367 2 роки тому

    Boostrap is a really great technology thanks for fcc team ❤❤

  • @Catzzye
    @Catzzye 2 роки тому

    2:04:59 mic improvement jumpscare hehe, thanks for the tutorial!

  • @raeesmohit01
    @raeesmohit01 2 роки тому

    Very much thanks buddy for free of cost teaching you help me alot

  • @tiagocesar2191
    @tiagocesar2191 2 роки тому +1

    Thank you so much for the tutorial. It was really helpful for a beginner

  • @aapoheiska3724
    @aapoheiska3724 Рік тому

    Not going to repeat all the compliments, but still : Awesome stuff!

  • @niranjanwagh5767
    @niranjanwagh5767 2 роки тому

    Best video on the internet about bootstrap! Just get rid of filler words. It started to annoy me little bit.

  • @shubhampatankar1468
    @shubhampatankar1468 2 роки тому

    Best tutorial ever ...but cause of word repating I was quite jumbled....

  • @janabod9041
    @janabod9041 2 роки тому +1

    Thanks so much for this tutorial

  • @LucasRodrigues-ob8hi
    @LucasRodrigues-ob8hi Рік тому +3

    Hey there. Why didn't you mention boostrap's extension that is available for VSCode?

  • @lonleybeer
    @lonleybeer 2 роки тому +2

    this is the best timing in my life

  • @kymion
    @kymion Рік тому

    I love this channel so much

  • @farukabdulmalik-ll3mx
    @farukabdulmalik-ll3mx Рік тому +1

    Just want to start leaning it
    Do you think this is perfect place I can learn bootstrap

  • @discjrolli
    @discjrolli 2 роки тому +4

    Best understable coding channel forever. 😎😍

  • @agustincruz7840
    @agustincruz7840 2 роки тому

    I was trying to figure it out how you wrap, with a shortcut, the tag's attributes one below the other, vertically, and I can't haha, somebody knows? It will be very useful.
    Thank you so much!
    Great video!

  • @komlatselougou8369
    @komlatselougou8369 2 місяці тому

    Great tutotrial

  • @talibshaikh2240
    @talibshaikh2240 Рік тому

    Appreciated by teaching style ! Keep it up . 👍

  • @MdSakib-ds9bf
    @MdSakib-ds9bf 2 роки тому +1

    I have completed HTML ans CSS and done few projects. Should I have some ideas before starting bootstrap? Or directly get into it?

  • @shikhaatlani
    @shikhaatlani 2 роки тому +1

    Very well explained. Thank you so much!

  • @JoshuaChaw
    @JoshuaChaw Рік тому +1

    Hi, the tutorial is great but you screen and font is so small. It is hard to see the screen. I strongly advice that whenever you do tutorial its good to think how the viewer comfort and the purpose is for the viewer to see the screen clearly.

  • @punkgrl325
    @punkgrl325 2 роки тому +10

    Wow, I was literally just googling bootstrap components when this dropped. Crazy good timing!

  • @abuahmed1186
    @abuahmed1186 Рік тому

    thank You very much for a great lecture

  • @siminaconstantinescu4757
    @siminaconstantinescu4757 Рік тому +1

    Thank you for the tutorial, its awesome. I have a question though, I didnt quite get it, what is it that you are using that helps you formulate the html quicker, it was something called AMA? I couldnt hear it that well.

    • @KaWeiLeong
      @KaWeiLeong Рік тому +1

      I'm looking for this tool too, is it AMA?

  • @typicalindiancoderwhowatch8458
    @typicalindiancoderwhowatch8458 2 роки тому +1

    You are saver i was just thinking of doing bootstrap

    • @Mdbootstrap
      @Mdbootstrap 2 роки тому

      I'm glad you found this video useful 😁

  • @adamrizk6735
    @adamrizk6735 2 роки тому +1

    I needed this, thanks!

  • @ralphandre4438
    @ralphandre4438 2 роки тому +2

    Been waiting for this!!

  • @rahxephon76
    @rahxephon76 2 роки тому +2

    I would love to see a bootstrap studio tutorial

    • @YoungDen
      @YoungDen 2 роки тому

      Now we talking with Bootstrap Studio tutorial

  • @invictuz4803
    @invictuz4803 2 роки тому +31

    Unfortunately, this doesn't seem to cover how to make your own CSS customizations to Bootstrap which is usually a requirement in the real world.

    • @orangemoonglows2692
      @orangemoonglows2692 2 роки тому

      did you go through the entire 2+ hours? what makes you say this?

    • @invictuz4803
      @invictuz4803 2 роки тому +7

      @@orangemoonglows2692 I went through every screen and there was no CSS or SASS anywhere. The video is basically showing examples of using Bootstrap classes like the Bootstrap docs does.

  • @sonamohialdin3376
    @sonamohialdin3376 Рік тому

    Very helpful tutorial thank you

  • @iste81
    @iste81 9 місяців тому

    great tutorial, thanks

  • @ranjeetkumar2051
    @ranjeetkumar2051 Рік тому

    thank you for making this video ❤❤❤❤💕💕💕💕💕💕 very helpful

  • @animeshrose
    @animeshrose 2 роки тому

    great tutorial! Wish you could have spoke more clearly in some areas, looking at the subtitle and the code isn't very user friendly.

  • @MrUsman732
    @MrUsman732 2 роки тому

    Tutorial is awesome but zoom level is worst.
    Please keep in mind that crash courses are to refresh concepts without opening code in VS.
    So increase zoom level.

  • @cbhaug
    @cbhaug 2 роки тому +2

    How do you get the text to auto-format/beautify/indent when pasting html etc? Your code just jumps in place

  • @alekseiismirnov4705
    @alekseiismirnov4705 Рік тому

    Thank you very much, this was useful.

  • @justinholbein9776
    @justinholbein9776 2 роки тому +4

    Let's go. Going to use this to rapidly prototype some Web3 ideas. Thank you!

  • @abhangjoshi
    @abhangjoshi 9 місяців тому

    very great tutorial

  • @jpkeys6000
    @jpkeys6000 2 роки тому +3

    What an excellent tutorial. Thank you MDB!

  • @qeric9798
    @qeric9798 2 роки тому

    Nice course. Thank you so much.

  • @redMaple_QC
    @redMaple_QC 10 місяців тому +1

    35:10 Shouldn't gutter gx increase the gap between columns??? It doesn't seems to be working the way it should.

  • @ДимитърДимитров-с2з

    Copy paste from the official documentation is considered a course now?