CSS Tutorial: CSS Display Property | Web Development Tutorials #24

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

КОМЕНТАРІ • 725

  • @LOKESHPAWAR20
    @LOKESHPAWAR20 4 роки тому +253

    People who are confused with border box. Consider following scenario:
    width : 500 px
    padding :100 px
    border: 10 px
    without border-box the total width of content would be 500+100+10=610px.
    but with border-box total width of the content would be 500 only 100 and 10 px will consider inside 500 px.

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

      thanks

    • @masst1961
      @masst1961 4 роки тому +3

      Bhai Mera ek inline block mai Nahi aa raha . Mai bilkul same Kar Raha hoo

    • @DHARMENDRASINGH-qc4hp
      @DHARMENDRASINGH-qc4hp 4 роки тому +1

      @@masst1961mera bhi nhi aa raha

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

      @@DHARMENDRASINGH-qc4hp Bhai aage Dekha hai
      Harry bhai ne inline box Ka alternative flex bhi bataya hai.

    • @DHARMENDRASINGH-qc4hp
      @DHARMENDRASINGH-qc4hp 4 роки тому +4

      @@masst1961 na bhai abhi nhi dekha

  • @amdrx6700xt
    @amdrx6700xt 3 роки тому +590

    for peoples who are getting confused: " in HTML there are inline and block elements, so with the help of display property you can make an inline element a block element. you can make a block element an inline element".hope this makes sense

    • @introvert_attique
      @introvert_attique 3 роки тому +6

      tnx

    • @Krenil.
      @Krenil. 3 роки тому +3

      tnx

    • @wowwow4254
      @wowwow4254 3 роки тому +5

      First in the video it was shown as header is block
      So if we do Margin auto then header as it occupies full space margin auto will not work as margin on both side will be equal and 0 by itself
      So width was reduced and then margin auto centered the item
      But in second case of image we changed an inline to block but didn't add any width
      Why and how did it happen

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

      Tnx bro

    • @sankalpsachan9199
      @sankalpsachan9199 3 роки тому +1

      @@Krenil. we did margin auto in img

  • @Moreynium
    @Moreynium 3 роки тому +430

    Short note for those who get confused.
    1)we can set width to block element and not to inline element. but we can make them block by { display: block} property. So that we don't have to use margin and padding extensively.
    2)But what if we want that element to position itself (OR occupy space) like inline element and also get adjusted by width? for this we use {display:inline-block} property.
    Any correction would be appreciated!

    • @navin346
      @navin346 3 роки тому +20

      This is most underrated comment. Thanks it is useful to me :)

    • @arkumar842
      @arkumar842 2 роки тому +9

      Img tag is a inline tag but still be can set its width. Why?

    • @utkarshpatil3180
      @utkarshpatil3180 2 роки тому +12

      @@arkumar842 in that we are setting width of image, not width of the tag.

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

      Thanks a Lot!!

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

      great

  • @harshitachaurasia1246
    @harshitachaurasia1246 4 роки тому +76

    Videos that keep me awake and not giving me up!

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

      Hey Im getting confused, I feel like I'm not learned anything. Can u plz help me ? Like what should I do ? And how should I do?

    • @harshitachaurasia1246
      @harshitachaurasia1246 3 роки тому +4

      @@nuclergaming9969 same here now bro😭

    • @rushigaikwad
      @rushigaikwad 3 роки тому +1

      @@harshitachaurasia1246 that was the best reply 😂

    • @harshitachaurasia1246
      @harshitachaurasia1246 3 роки тому +1

      @@rushigaikwad 😂😂😂

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

      Mere toh aadha upper se jarha😂

  • @navin346
    @navin346 3 роки тому +106

    Block element: A block-level element always starts on a new line.
    A block-level element always takes up the full width available. A block level element has a top and a bottom margin, whereas an inline element does not.
    Inline element: An inline element does not start on a new line. An inline element only takes up as much width as necessary.
    We can change an inline element into a block element(and vice-versa) using display property(display property ki madat se ham block element ko inline aur inline element ko block me change kar sakte hein).
    Display: Inline-block: Allows us to set a width and height on the element. The top and bottom margins/paddings are respected in inline-block.
    Display-inline: The top and bottom margins/paddings are NOT respected.
    Display: block: It is a block element and adds/occupies a whole line.

  • @SLIME-gx6fo
    @SLIME-gx6fo 2 роки тому +5

    Most of the elements that you have learned about so far are block elements. In other words, their default style is display: block. By default, block elements will appear on the page stacked atop each other, each new element starting on a new line.
    Inline elements, however, do not start on a new line. They appear in line with whatever elements they are placed beside. A clear example of an inline element is a link, or tag. If you stick one of these in the middle of a paragraph of text, it will behave like a part of the paragraph. (Like this…) The link’s text will sit alongside other words in that paragraph. Additionally, padding and margin behave differently on inline elements. In general, you do not want to try to put extra padding or margin on inline elements.

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

    This is only the best video in whole u tube on display properties where I found to the point explanation.keep it up harry bhai..u r the heart of millions of coders ❤🎉

  • @its_alveera_naaz
    @its_alveera_naaz 3 роки тому +18

    Watching it twice made sense 😀

  • @paramdave7143
    @paramdave7143 11 місяців тому +2

    Thank you so much Harry bhai i have solved my display property issue after watching your this video very easily.

  • @mazharimam9216
    @mazharimam9216 4 роки тому +583

    The first lecture where I felt like it's bit tough to understand 😅😅😅..

    • @bharatmishra250
      @bharatmishra250 3 роки тому +44

      @@yashkapoor2377 yeah web development is all about learning 10%then apply 100%(practice)

    • @dilawarmehar3685
      @dilawarmehar3685 3 роки тому +5

      same

    • @wizminar
      @wizminar 3 роки тому +18

      @@bharatmishra250 yes!!! we are soo lucky we are getting this for free my brother learned this from college...(web development)

    • @desihiphop4998
      @desihiphop4998 3 роки тому +4

      @Deangelo Kyng girlfriend he banwa de bhai smjh to kuch aa Nahi raha hai time to pass hoga 🙂🙂

    • @tpermcubing8139
      @tpermcubing8139 3 роки тому +4

      I felt this is floats but than I found an animated explanation of it then I really understood floats in a pretty good way'

  • @chiragjaiswal4328
    @chiragjaiswal4328 3 роки тому +30

    I just want to include a point that in box-sizing:border-box;
    The width is calculated by adding content+padding+border(not margin).

    • @aakashmehta9390
      @aakashmehta9390 3 роки тому

      Thanks bhai 👍

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

      Even I noticed it while using dev tools but sometimes width = content space alone and I don't know why

  • @apoorv7297
    @apoorv7297 2 роки тому +9

    It was difficult for me to understand once but i rewatched and it worked for me 👍I think that coding will get more better the more we experiment !

  • @xoboy4724
    @xoboy4724 4 роки тому +59

    bro this playlist is definitely amazing . No doubt at all. It'd be better if you give us some assignment kind of stuff after every video so that we will be familiar to what we are learning .That'd be really helpful .

    • @bharatmishra250
      @bharatmishra250 3 роки тому +1

      U can practice or u can download some assignment from Google

  • @ShadabAhmedKhan-dh2nb
    @ShadabAhmedKhan-dh2nb 3 роки тому +95

    We can center only block element using margin:auto , therefore to center inline elements first we need to convert them to block elements. Even in the case of block, first we need to set their width

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

    For keeping the header in center, a more simple way is to use tag.

  • @Daily-j2h
    @Daily-j2h 11 місяців тому +1

    Thank You Sir Very Helpful video😇😇

  • @ZJSports007
    @ZJSports007 3 роки тому +6

    Really interesting way to explain both block and in-line elements in hierarchy of markup language. Thanks a million, Harry for making these videos/tutorials and giving real-life examples and projects.

  • @abhaypratap9898
    @abhaypratap9898 3 роки тому +6

    I continuously watched this video 4 times 😅😅 , then I got it 😊👍

  • @abhishekpandit6287
    @abhishekpandit6287 3 роки тому +1

    ab mzaa aane lga ek no bhai

  • @nirvana124
    @nirvana124 3 роки тому +1

    harry bhai asaan cheezein bohat ache se samjhayi, mushkil cheezein jaise pehle thi, ab bhi vaise hi rahi hai, ache se samjhao bhaijan.

  • @085-vaibhavgusain9
    @085-vaibhavgusain9 4 роки тому +126

    Now its getting out of my head

    • @abulkalamasif1270
      @abulkalamasif1270 4 роки тому +14

      watch it again and again and do some practice...

    • @backtobackcosmicflash
      @backtobackcosmicflash 4 роки тому +9

      That's because you don't practice it.

    • @chinmaykulkarni6293
      @chinmaykulkarni6293 4 роки тому +5

      Refer the net ninja html css crash course to understand inline-block
      Element. He explained it in more proper way

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

      my answer isalso same no difference

    • @tpermcubing8139
      @tpermcubing8139 4 роки тому +1

      Bro watch it again first I was also getting confused

  • @cyberpolice3183
    @cyberpolice3183 4 роки тому

    I visited to your website and inspected the source code of your website, it gave me positive feeling to design a website everyone should try this

  • @sktamim_01
    @sktamim_01 4 роки тому +4

    I'm very thankful to you sir.
    I learned many of things from your video.Thanks for giving us so much for free.
    may god bless you.
    Sir You are great.

  • @jeffomega
    @jeffomega 3 роки тому +7

    Harry Bro there's no-one who could have taught it any better. Thank you for this series and also for doing it for society i.e. for free, it now even inspires me to do something for this society to make it better. Thank you very much brother. Hope all your wishes come true.

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

    Harry Sir... Mai Playlist Ko Save kr liya hui...
    Kafi mast lag raha sir ji... aapka lectures
    Bahut bahut dhanywaad aapka...

  • @sudarshanmhaisdhune1039
    @sudarshanmhaisdhune1039 4 роки тому +1

    CSS king Harry Bhai...proved

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

    Best of best explaination Harry bro...accessing this video second time for better understanding of display proeprty❤🎉..got it deeply

  • @FaithfullyUrs143
    @FaithfullyUrs143 2 місяці тому +1

    mind blowing harry bhai but please explain slowly🥲 by the way nice video

  • @abheysachdeva6133
    @abheysachdeva6133 4 роки тому +70

    Sir till 23 tutorial it was great..but it is really confusing for a beginner when things are confusing..as in this video after 12th minute..it was not clear at all

    • @jayeshmalviya3528
      @jayeshmalviya3528 4 роки тому +1

      yes
      its confusing

    • @abulkalamasif1270
      @abulkalamasif1270 4 роки тому

      @Adwait Barkale exactly

    • @arniksen7864
      @arniksen7864 4 роки тому

      Practice by urself...everything gonna be cleared...things r very interesting and easy my frnd...

    • @nuclergaming9969
      @nuclergaming9969 3 роки тому

      @@arniksen7864 bro what is the best way to practice or learn ?

    • @nuclergaming9969
      @nuclergaming9969 3 роки тому +1

      @@arniksen7864 bcoz I'm watching these videos but feel like I haven't learnt anything

  • @utkarshpatil3180
    @utkarshpatil3180 2 роки тому +22

    2:03 CSS Target, 3:35 centering using margin auto, 5:30 Note, 7:59 inline block, 10:29 box sizing: border box, 12:07 display: inline-block

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

      Display: table ?

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

    I have completed lecture 24 today. I have some confusion about this Display property. But I will try to practice it regularly. Now I am going to next lecture about Position. Thanks for the video

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

    After all the research I did, I can now finally conclude that this playlist is the best playlist for the web development course. Thanks Harry bhai!❤️

  • @ZainAli-sl1vp
    @ZainAli-sl1vp 5 місяців тому +1

    Congragulation for 6M Boss

  • @priyanshukhare6652
    @priyanshukhare6652 4 роки тому +4

    Thank you Harry Bhaiya for providing such great playlists and videos for us.

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

    Thanks dear sir you are literally god of us!

  • @adarshrai9516
    @adarshrai9516 4 роки тому +4

    Mast bhai plzz cover each and every topics in this series.
    Thanks for everything.

  • @basantakumarmohapatra9109
    @basantakumarmohapatra9109 4 роки тому +5

    bohot important(complicated) topic ko aap bohot aacha se samjha diya . thank you The Harry Bhai🙏🙏🙏 🤩

  • @computerexpert-kw1bd
    @computerexpert-kw1bd 4 місяці тому

    Your have explained it very nicely and it is also easy to understand .. Thank you bro.

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

    clear every concept.really method of explaining too gud

  • @dhruvsanjeevsharma1139
    @dhruvsanjeevsharma1139 3 роки тому +1

    Amazing content... I want to complete this playlist as fast as possible without wasting my time

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

    You are the reason that I can learn programming even while doing job. You are a gem for the programming community. LOT'S OF LOVE TO YOU AND MAY YOUR CHANNEL GROW LIKE WILD FIRE.

  • @VikashKumar-be6bh
    @VikashKumar-be6bh 4 роки тому +1

    Bhai thoda sa hard concept tha but 2 bar dekhne pr smjh aa gya

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

    Too much to grasp in this video. Will need to re-watch it carefully to pick all the concepts again. Thanks for making these top quality educational videos Harry Bhai.

  • @abhi1780
    @abhi1780 3 роки тому

    Sir bahut sare concepts ek bar mai pda diye thoda confusion hogya ...I have to practice 😁

  • @SwathiS-s2o
    @SwathiS-s2o 8 місяців тому

    Ur teaching skill is very good

  • @dcvmcuclips6875
    @dcvmcuclips6875 4 роки тому +3

    is waly tutorial ne to demagh hila k rakh diya

  • @VijayaLakshmi-mk2gy
    @VijayaLakshmi-mk2gy 3 роки тому

    I like every video which i watch of your channel

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

    Such a confusing video.. but at last finally i understood what was happening....

  • @rashidaaziz8156
    @rashidaaziz8156 3 роки тому

    thank you ap k tutorials bhot achy sy smj a rahy hain again thank you

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

    Analogies :-
    1)display: inline-block:
    It convert block element into inline and
    also block so that it posses both properties so that it can give the same space to another block.
    2)box-sizing: border-box:
    It justify the each box inside the container and each box give the same respect to each other to apply their properties.

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

    Very informative video sir. I learn lot from this❤️❤️

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

    Majaa aagaya Harry Bhai, Lots of love for you. ..

  • @DendraMusic
    @DendraMusic 3 роки тому +1

    Thankyou Harry well tought...... Love from Assam....

  • @bhavyagoel7511
    @bhavyagoel7511 3 роки тому +1

    9:57 was the point where i understand the video properly

  • @mukesh.bmukesh.b1257
    @mukesh.bmukesh.b1257 2 роки тому

    Thank you for your efforts very helpful video

  • @raj_amancha
    @raj_amancha 4 роки тому +1

    Thnx for your support 👍

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

    U shouldn't have used img for explanation of this topic, since img is inline block element. Here we can set width and height unlike other inline elements. For those who are getting confused use anchor tag and try to give width, height and margin:auto to it. And u will find u cant, so u need to convert it into block element

  • @Soulcode-k
    @Soulcode-k 3 місяці тому

    The gardest one yet💪 let's gooooooooo🔥🔥🔥

  • @daneenahmmaddaneenahmmad1413

    Well done . your lecture's are very interesting or easy to understand .I wish I came to India and join live classes

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

    BIG THANK YOU 💗BRO LOVE FROM PAKISTAN

  • @ishtiaqahmad4118
    @ishtiaqahmad4118 4 роки тому

    wonderful, wonderful, wonderful Hurra, hurra I.A.Ishtiaq

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

    Thnx harry bhai for giving us such a amazing course

  • @emazakhtar
    @emazakhtar 3 роки тому

    /* dekho inline block display use karne ka ek hi maqsat hai multiple blocks ko ek line me lane ke liye qki agar display block hoga to ek hi block poori line ki width kha jayega aurhum multiple blocks kahan se layenge phir aur agar inline hoga to hum width set ni kar payege to isi lie hum late hain inline block ka concept jisme ki humare elements to inline hi rahenge matlab ki pooori ek line ni khayenge aur hm width set kr skte hain width set q karna hai width set is liye karna hai q ki agar hum 4 blocks ko ek line me fit karna chahte hain to sbki width 24% krdege (ek hi baar karenge class se target krke) agar 3 blocks ko ek line me karna hai to width 33% kardenge jaisa ki harry bhai ne kiya hai and so on */

  • @zara-zb1df
    @zara-zb1df 3 роки тому +1

    inline property wo element jo ek line me jitni bhi jaga hoti h le leta h
    block element wo element h jiski width ham change kar lsakte hein aur wo block me hota h
    display property ki madat se ham block element ko inline aur inline element ko block me change kar sakte hein
    display: inline-block ki madat se ham inline element ko block element bna sakte hein ta k ham uski width change kar skein
    box-sizing: bprder-box; karne se jo width hamne di h wohi rahe gi including margin and padding

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

    Etni fast me thoda irritate bhhi ho gya pr koi nhi Harry bhai h apna 💖

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

    I am very excited for this videos and i learn html and css thanks for you 🥰🤩

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

    Congratulations sir for 3 million subscribers 👏 ❤🖤
    Love from 🇳🇵

  • @MrStreamer
    @MrStreamer 4 роки тому +34

    Bhaiya Thode Confuse Hogaye Thhey Na?

    • @kotharidhruv75
      @kotharidhruv75 4 роки тому +4

      hum bhi bahut zyada confuse hogaye

    • @MrStreamer
      @MrStreamer 4 роки тому +4

      @@kotharidhruv75 same here Bhai..

    • @Arixxxverse
      @Arixxxverse 4 роки тому +1

      Yes iam also confused minimum 34%

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

    gotta watch it again tomorrow, to understand it completely anyways thanks

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

    i followed every step as harry did on vs code

  • @g__shan
    @g__shan 4 роки тому +38

    It happened to the first time in this course - I have not understand anything.....

    • @raniandre
      @raniandre 3 роки тому

      hi have you completed learning web development?

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

    Harry sir ..pta nhi aaptk mera yeh comment poch bi payega yaa..
    But me yeh kehna chahta hu ..ki aap bhut jaldi jaldi smjhate ho ..jisse new person bich bich me jroor rukta h ..jase me bi ..m

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

    binge watching this playlist... so relevant even in 2023..

  • @surendrak_marshkole
    @surendrak_marshkole 4 роки тому +1

    Good evening Harry Bhai

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

    the best way to learn it is to practice along with this tutorial on vs code in the back.

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

    6:36 "Ek chiz yahapr dekhna, jb ye bada ho jata hai na mera bohot bda,
    Ek problem create karta hai." - Us bro us

  • @408_sarthak6
    @408_sarthak6 4 роки тому +1

    YOU ARE GREAT HARRY !! Thnx a lot !

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

    Love and respect for you harry ☺️☺️

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

    9:46
    puri puri space ly rhy hyn
    repeated 3 times .... very intresting style .... 😘😘😘😘😘

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

    point to be noted here : although img is an inline element it behaves as inline block

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

    we can add (text-align) in header,
    in this case your all item will be in center, your photo and text
    so i think we don't need to add (text-align) individually.
    we can put (text-align) in header.

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

    Harrybhai you are really simple and productive
    But where do you learn from?

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

    Thank u very much Harry Bhai..

  • @mohammadasif8281
    @mohammadasif8281 4 роки тому +5

    Bhot bhassad krdi bhai 🙁🙁🤷🏼‍♂️

  • @rakshitbhandari7405
    @rakshitbhandari7405 3 роки тому

    Lesson No. 24
    Completed

  • @yaremix6548
    @yaremix6548 4 роки тому +11

    Bro what do you do with notepad++.
    In this entire tutorial?

  • @learn_Japanese_with_sam
    @learn_Japanese_with_sam 3 роки тому +1

    Ramzon la phela din sabko mubarak ho apko bhi Harris Khan bhai I mean Harry

  • @minalrathi4661
    @minalrathi4661 4 роки тому +8

    Sir...all vidios till are best and was easy to understand...bt it was confusing for me.. the concept of display property is not cleared properly.

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

    Best explanation

  • @Dead_Zone_0922
    @Dead_Zone_0922 3 роки тому

    this this the only video in this play list that i feel, i got a little bit...........harry bhaai ek dm confuse kr diya aapne...

  • @futureStick_ji9449
    @futureStick_ji9449 4 роки тому +1

    Harry bhai ye video kafi confusion wala ho gaya .
    I am confuesd with display property ,box sizing.

  • @algalg4359
    @algalg4359 4 роки тому

    Are Harry Bhaiya aap tou kamaal ho yaar..
    matlab itna simple bana diya aapne ki kya hi bolu!
    mast maja aarha hai pahunch gya 24th Tutorial pe!

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

    Thank You Sir 😊

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

    First lecture where I find hard to understand

  • @sakshirao2103
    @sakshirao2103 4 роки тому +33

    This was the most confusing tutorial till date.. Seriously, this 15 minutes video took 3 hours to execute in my PC🥺

    • @shivamgoyal7404
      @shivamgoyal7404 4 роки тому +4

      i think you not watched from starting every video is fine except this one.

    • @sakshirao2103
      @sakshirao2103 4 роки тому +6

      @@shivamgoyal7404 I watched every single Tutorial since the very beginning..But this is very confusing..

    • @shivamgoyal7404
      @shivamgoyal7404 4 роки тому +4

      @@sakshirao2103 actually I am doing this course as a revision rather than learning so may be it is confusing for those who are beginners.

    • @aditya._.official
      @aditya._.official 4 роки тому +1

      @sakshi rao right i am also very confused 😶

    • @mustafaahmadkhan8962
      @mustafaahmadkhan8962 4 роки тому

      1st yh watch karo then harry so u all will understand well

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

    Thank You harry bhai

  • @yogeshtyagi4800
    @yogeshtyagi4800 4 роки тому

    Your videos are always best

  • @SanatanBoy.
    @SanatanBoy. 2 роки тому

    sir you are great

  • @fatimaayaz.1578
    @fatimaayaz.1578 2 роки тому

    Thank you for this video

  • @anshumanshah9534
    @anshumanshah9534 3 роки тому +4

    U made me confused in the middle 🙏🙏