CSS Position Property | Sigma Web Development Course - Tutorial #28

Поделиться
HTML-код
  • Опубликовано: 13 июл 2024
  • Access the Sigma web development course playlist: • Sigma Web Development ...
    ➡️ Source Code: github.com/CodeWithHarry/Sigm...
    ➡️ Notes and CheatSheets: www.codewithharry.com/notes/
    ➡️ English Subtitles are now up for all the videos!
    TimeStamps ⌚
    00:00 Introduction
    00:29 Sigma Web Developer Course Intro
    00:39 Static Position
    04:30 Relative Position
    08:21 Absolute Position
    12:50 Fixed Position
    15:06 Sticky Position
    17:59 More on Positions
    22:36 Conclusion
    23:32 Sigma Outro
    ►Checkout my English channel here: / @programmingwithharry
    ►Instagram: codewithharry
    Download UltraEdit Trial for Free: bit.ly/UltraEdit-CWH
    python, C, C++, Java, JavaScript and Other Cheatsheets [++]:
    Playlist: • Coding CheatSheets 🧾 b...
    ►Learn in One Video[++]:
    Python Course with 5 Projects: • Python Crash Course in...
    Python[15 Hr]: • Python Tutorial For Be...
    Python Advance[3.5 Hr]: • Python Programming Cou...
    Python[1 Hr]: • Learn Python In Hindi ...
    Python[2 Hr]: • Python Tutorial In Hin...
    Python[15 Min]: • 15 Minute Python Tutor...
    JavaScript[1 Hr]: • JavaScript Tutorial
    C[1.3 Hr]- • C Programming Tutorial...
    php[1 Hr]: • Learn Php In One Video...
    php[2.3 Hr]: • Php Tutorial for Begin...
    php[Project]- • Login And Registration...
    HTML[30 Min]: • HTML 5 Tutorial For Be...
    CSS[8.5 Hr]: • CSS Tutorial In Hindi ...
    CSS[1.4 Hr]: • CSS 3 Tutorial For Beg...
    Wordpress[3.2 Hr]: • How To Make a WordPres...
    Angular[2 Hr]: • Angular Tutorial in Hindi
    Java[2.3 Hr]: • Java tutorial in hindi 🔥
    Web Scraping[1 Hr]: • Web Scraping Tutorial ...
    MongoDB[2 Hr]: • MongoDb Tutorial For B...
    Numpy[1 Hr]: • Numpy Tutorial in Hindi
    Android Dev[12 Hr]- • Android Development Tu...
    Linux[1 Hr]: • Linux Tutorial For Beg...
    JQuery[1.1 Hr]: • jQuery Tutorial For Be...
    Git and GitHub[1.1 Hr]: • Git & GitHub Tutorial ...
    ►Complete course [playlist]:
    React: • React Js Tutorials in ...
    Python- • Python Tutorials For A...
    OOP Python- • Object Oriented Progra...
    Java: • Java Tutorials For Beg...
    JavaScript- • JavaScript Tutorials I...
    PHP- • PHP Tutorials in Hindi
    C- • C Language Tutorials I...
    C++- • C++ Tutorials In Hindi
    Git & GitHub- • Git and GitHub Tutoria...
    Android Dev- • Android Development Tu...
    Python GUI- • Python GUI: Tkinter Tu...
    Web Development- • Web Development Tutori...
    Python Django: • Python Django Tutorial...
    Projects Using HTML, CSS & Javascript- • Projects Using HTML, C...
    Data Structure and Algo: • Data Structures and Al...
    Follow Me On Social Media
    ►Website (created using Django Rest & Angular): www.codewithharry.com
    ►Facebook: / codewithharry
    ►Instagram: / codewithharry
    Twitter: / codewithharry
    Comment "#HarryBhai" if you read this 😉😉

Комментарии • 1,3 тыс.

  • @AvengeAbdullah
    @AvengeAbdullah 8 месяцев назад +337

    Summary :
    Relative - Apni orginal position se change hogi
    Absolute - apne parent ke relative position change hogi
    Fixed - page mein position fixed hojaygi
    Sticky - page mein kahin bhi ho, scroll krne pr neeche nhi jaygi, stick hojaygi

    • @AliHamza-hi3zy
      @AliHamza-hi3zy 8 месяцев назад +6

      Thanks Bhaya

    • @it_biswadiproy3675
      @it_biswadiproy3675 8 месяцев назад +17

      absolute : apne nearest ancestor positioned parent k relative change hoga***

    • @dhirenradhanpura4084
      @dhirenradhanpura4084 8 месяцев назад

      Par position absolute kiya to left 34px diya to position overflow kyun hua ? parent ke andar hi rehna chahiye tha na ?

    • @CODERBEY
      @CODERBEY 8 месяцев назад

      Create Beautiful Modern Login Page Using HTML and CSS
      ruclips.net/video/P0O1jjwzcJQ/видео.html

    • @KarachiOnly
      @KarachiOnly 8 месяцев назад

      Parent ko position : relative krdo pir nahi jyega bahir

  • @sandhyawadhwa6963
    @sandhyawadhwa6963 8 месяцев назад +65

    My 40th Birthday is on 14th NOV. Proudly learning Web development because i have been learning it (on and off) since 2019 ( had enrolled myself in one of the institute as well ) but did not get proper guidance. I have learnt many things and made notes through w3c school and different videos. Have learnt, practiced and converted 5-6 pdfs into html. Need to learn Programming and i don't want to leave my dream to being a web developer and want to make my own website as a project so that being a yoga instructor I can able to share my knowledge on my platform. Thank you from bottom of my heart Harry for this amazing course. Soon hopefully I become web developer and have a stable earning.

  • @aamish.iqbal01
    @aamish.iqbal01 8 месяцев назад +238

    Who is exited for JAvascript?🔥🔥

    • @CodeWithKrish1
      @CodeWithKrish1 8 месяцев назад +4

      Me

    • @nikhilwithcoade
      @nikhilwithcoade 8 месяцев назад

      ​@codewithrohit839 that's good revision is best

    • @ZorawarSingh-ip2gr
      @ZorawarSingh-ip2gr 8 месяцев назад +1

      Me also❤

    • @JAI_CODER
      @JAI_CODER 8 месяцев назад +1

      😮how do you know

    • @alpha937
      @alpha937 8 месяцев назад +2

      How many episodes are left in css?did anyone know?

  • @omkarsawant9267
    @omkarsawant9267 8 месяцев назад +13

    Position Property determines the position behavior of the element.
    1.Static which is default value. Position according to normal flow of the page and other properties like top / left / right / bottom have no effect.
    2.Relative position relative to its normal position in the document flow. We can use properties like top / left / right / bottom to offset it from normal position without affecting layout of other elements
    3.Absolute position relative to its nearest positioned [non static] ancestor if any available otherwise it will be positioned to its initial containing block[usually the element]
    4.fixed is positioned relative to its browser window or the viewport. stay in same position even if page is scrolled.
    5.Sticky is hybrid of relative and fixed positioning. it is treated as relative positioned until it crosses a specified point in the viewport during scrolling after which it is treated as fixed positioned. Real life examples of Sticky position
    *Commonly used for creating navigation bars that stick to the top of the page after scrolling past a certain point.
    *It's useful for creating sticky sidebars or elements that need to stay visible within a specific scrollable area.
    Note - Limitations of Sticky Position:
    The sticky positioning might not work as expected in certain cases, especially if the parent container or ancestor elements have certain CSS properties like overflow set to hidden or transformations applied.

  • @nirmaljitsingh2616
    @nirmaljitsingh2616 8 месяцев назад +92

    Harry bhai's consistency is on next level unmatchable keep it up ❤ great Harry

  • @second_inning_development
    @second_inning_development 8 месяцев назад +69

    summery:
    CSS position - to manipulate the location of an element
    1- position: static; //(by default property , no effect of top, bottom, left, right, z-index)
    2- position: relative; //(shift the position according to its actual position)
    3- position: absolute: //(shift the position to its nearest parent element)
    4- position: fixed; // same as absolute, except the element is positioned relative to browser window
    no effect of scroll
    5- position: sticky; // element is positioned based on scroll position, until the scroll location of the viewport reaches a specified threshold. (when scroll in sticky container it behaves like static)
    #SigmaBtachOP

  • @sneharani6446
    @sneharani6446 6 месяцев назад +9

    Sir aapne toh exponentially raise kr diya bar iss video mei 🤯🤯🤯🤯

  • @yadu2568
    @yadu2568 8 месяцев назад +9

    The difference between sticky and fixed.
    Sticky position will not change the position of the element to top or bottom or wherever, it will position itself to the given coordinates when the certain threshold of the parent element is passed, whereas Fixed position will change the position of the element according to the given coordinates at once, and will stay fixed at that point even if the page is being scrolled or not.

  • @isole8780
    @isole8780 8 месяцев назад +12

    dheere dheere log hat te jaa rahe hain
    just goes to show that jisko seekhna nhi ho uske saamne free ka sona rakhdo phir uthne mai aalsi pana karega
    Jazakallah Harry bhai, keep going and longer vids please

  • @amitmauli
    @amitmauli 8 месяцев назад +15

    You are the best developer in india right now bro.... and i am eagerly waiting when we will be making big projects together...Thank you for this amazing course❤

  • @shahriar_tamim
    @shahriar_tamim 8 месяцев назад +3

    Sir you're an inspiration for me. Your tutorial always boosts me up to learn new things.

  • @zeeshanchoudhary6486
    @zeeshanchoudhary6486 6 месяцев назад +2

    @codewitharry u killed it bro my english is not too good soo plz don't mind
    when i saw ur #sigmawebdevelopment video's i left my paid data analysis course keep it upppp bruhhhhhhhh

  • @adityarathod9108
    @adityarathod9108 8 месяцев назад +26

    "Harry Bhai's web development course on RUclips is an absolute gem! 🌟 His teaching style is not only engaging but also incredibly clear and easy to follow. Whether you're a complete beginner or an experienced developer looking to level up your skills, this course has something for everyone. Harry's in-depth explanations and practical examples make complex concepts seem like a breeze. Plus, his passion for web development is truly contagious! 🚀

  • @codewithrahull9636
    @codewithrahull9636 6 месяцев назад +10

    "This man could have earned millions of rupees by selling this course, yet he chose to keep it free for us. Harry deserves much respect. 🙌"
    #SigmaBatchOP

  • @varahalaramana3978
    @varahalaramana3978 23 дня назад

    your outro is amazing i literaly stand and dance on your outro 🥳

  • @AnuragSingh-gs1mb
    @AnuragSingh-gs1mb 8 месяцев назад

    Great, going well! Your teaching style is amazing, sir

  • @nurahamed2570
    @nurahamed2570 8 месяцев назад +3

    Bohat maja aya, 24 minutes kab end huya pata nahi chala.
    Please explain more properties upcoming Tutorials ❤❤❤❤

  • @albertrio7595
    @albertrio7595 8 месяцев назад +6

    dear harry this is a very detailed and informative course , and i think i can say on behalf of everyone that we really appreciate your hard work . after saying that if it's possible can you also give us minor examples (from your own or other website ) that what this kind of css is used for as it'll be really helpful no pressure tho

  • @AaryaEdits942
    @AaryaEdits942 8 месяцев назад

    harry bhai, loved your videos and the way you explain everything. Simply awesome!!

  • @wisdom-today7
    @wisdom-today7 Месяц назад

    Thank You Harry Bhai, Great Job. Awesome Playlist

  • @aquibrabbani33
    @aquibrabbani33 8 месяцев назад +3

    Harry bhai ka intro bahut khatarnaak hai. Rampur junction se 🔥🔥🔥

  • @Pankaj9020
    @Pankaj9020 8 месяцев назад +3

    static-box ki Bydefault position static hoti h. static property me aap top, bottom, left, right ka use nhi kar sakte uske lie position static se hatana padega.
    abosulte- is position me div ya box apne nearest ancestor(parent) ke according set hoga jab parent bhi positioned ho, agar nhi h to aage check karte hue html k according set ho jaega. transform , filter and perspective property bhi positioned ka kaam karti h aur agar parent me inme se koi bhi property use hui ho to div us parent ke according set ho jaega.

  • @salim1076
    @salim1076 3 месяца назад +1

    Position property ki isse achhi video maine ajtak nahi dekhi. Thank you harry bhaiyya

  • @GAMER-os2jb
    @GAMER-os2jb 7 месяцев назад +2

    Guys!! If you are confused to follow this course. I am telling you this type of course is worth it. don't confuse just follow this course.
    Sigma batch OP
    Proud to be Sigma Army.

  • @SoumitaBanerjee23
    @SoumitaBanerjee23 8 месяцев назад +3

    kash koi college main ayse padate toh aj kahase kaha hote.... huge respect for you sir♥🙏

  • @Android-17
    @Android-17 8 месяцев назад +15

    *Transform, filter & perspective* properties make elements appear as positioned 🤯
    #SigmaBatchOP

  • @yashrawat7007
    @yashrawat7007 5 месяцев назад +2

    Definitely, bhaiya daily increasing the bar like anything, all thanks to you...

  • @brandonnoronha5535
    @brandonnoronha5535 9 дней назад

    Sigma Batch OP🔥Superb tutorial today sir👍

  • @vansolaarth9600
    @vansolaarth9600 8 месяцев назад +6

    Sigma batch is op ❤️

  • @NiteshKumar-ru2dl
    @NiteshKumar-ru2dl 8 месяцев назад +3

    Little recommendation - using graphic board and mdn documentation reference will increase the understanding level. Thnkx for the awesome content from years.

  • @WebSigmaBatchOP
    @WebSigmaBatchOP 5 месяцев назад

    I am big fan aap ne hum logo ke liya Web Development ka Course free main
    laye hain uske liye dil se thanks... aisa koi RUclips Teacher nahi hai jo Web Developer Course ko free main shikhaye. And dil se thank you thank you thank you sir ❤❤❤
    LOVE HO GYA FROM PAKISTAN❤❤❤ Thanks Alot for giving this Course
    As a Student am very happy to join your course
    #SIGMABATCHOP

  • @dakshataramteke1838
    @dakshataramteke1838 2 месяца назад

    Most important concepts taught in this lesson awesome 💯

  • @ashutoshjha1910
    @ashutoshjha1910 8 месяцев назад +6

    Bhaiya aap roj apne hii course ko bookmark se hata dete ho aur uske baad aap video me bookmark krte hoo😅😅😂😂 everyday I noticed you😂😂

  • @ayushparate4745
    @ayushparate4745 8 месяцев назад +5

    28th Day complete 5star⭐⭐⭐⭐⭐

  • @itsmusic7972
    @itsmusic7972 3 дня назад

    concept is clear as a mirror 😇. Thankyou Sir❤

  • @sufiyanmogal1527
    @sufiyanmogal1527 5 месяцев назад

    Thanks bro for giving this wonderful course

  • @kelvinpansuriya4628
    @kelvinpansuriya4628 8 месяцев назад +4

    Harry Can You Also Make Course On web3 And Solidity Language....
    And Also Prefer Alpha 😅 Name For That Course.....
    Bro Please Replay Me Because Me And Your Audience Wants Up To Date On Technology......

  • @Nikhil__Lal
    @Nikhil__Lal 8 месяцев назад +3

    sigma batch op

  • @jethiya731
    @jethiya731 8 месяцев назад +2

    MZZA agya bhai . Maine udemy pe course liya tha usme toh yeh btaya hi ni . Thanks Harry bhai ❤❤

  • @Metheeboss
    @Metheeboss 6 месяцев назад +2

    Harry bhai proved that everything that cost money is not valued, First free course that can easily crossover paid courses

  • @suggestedforyou
    @suggestedforyou 8 месяцев назад +4

    Hey Harry Bhai please tell us still how much days are required to complete the whole tutorial Bhai please give one deadline 😢
    Always we are waiting for your video every day 💓💓💓
    Lots of love from South India ❤❤❤❤
    #sigmabatchop

  • @Nimai_OP
    @Nimai_OP 8 месяцев назад +3

    Apna college

  • @AakashIjaz-rc1vl
    @AakashIjaz-rc1vl 17 дней назад +1

    If #CodeWithHarry makes this course paid at 10k INR, approximately 30k people would likely buy it based on the views on each video. So guys, just imagine-he could earn approximately 300 million INR. Damn, salute to this man for making the course free. Your level is incredible, brother!

  • @user-qh3vw9yg7i
    @user-qh3vw9yg7i 3 месяца назад

    #SigmaBatchOp 12:46 bhai samjh me aa gayi ye cheez , bhai aap samjhate hi ho itna acha ki na samjhne ki koi gunjaish hi nahi rahti hai ... thank you harry bhai dil se 💜

  • @maazkhan5410
    @maazkhan5410 8 месяцев назад +3

    Sigma batch op

  • @musicfan32
    @musicfan32 8 месяцев назад +3

    Present
    #SigmaBatchOp
    Bhaiya how can we learn a little out of the box concepts
    Like you asked in exercise2

  • @anshiarora5432
    @anshiarora5432 3 месяца назад

    Awesome playlist thanks

  • @agrawalmitesh4395
    @agrawalmitesh4395 3 месяца назад

    Ab jake clear hua , thank you harry bhai.

  • @LearnBoom
    @LearnBoom 8 месяцев назад +17

    Rohit singh present

  • @MoTuGamIng-lr9mp
    @MoTuGamIng-lr9mp 8 месяцев назад +9

    first from pakistan

    • @kanhiyayadav7224
      @kanhiyayadav7224 8 месяцев назад +5

      Pakistani bacche bhi coding sekhte hai kya

    • @fansofa2688
      @fansofa2688 8 месяцев назад +1

      ​@@kanhiyayadav7224bhai Pakistan mein sab log galat nahi hai yaar ese mat bolo yaar kisi jai hind........❤❤❤❤

    • @MoTuGamIng-lr9mp
      @MoTuGamIng-lr9mp 8 месяцев назад

      zahir sii baat hy @@kanhiyayadav7224

    • @muneerhyder7655
      @muneerhyder7655 8 месяцев назад +3

      Same iam from 🇵🇰

    • @muneerhyder7655
      @muneerhyder7655 8 месяцев назад +2

      Me web development kafi time se follow kr rha hoon Apka koi Question ho mujhe contact kr sagte hain

  • @salonibhadouriyq
    @salonibhadouriyq Месяц назад

    Tutorial 28 done sigma batch op loving it alot ❤❤

  • @leomessi10194
    @leomessi10194 2 месяца назад

    Best course ever thank you Harry Sir 🙏

  • @NohablaEspnaol
    @NohablaEspnaol 6 месяцев назад

    You have a great teaching method man

  • @huraiskhan8160
    @huraiskhan8160 8 месяцев назад

    Sir thanks for providing such a high quality course for free

  • @sakshamverma7477
    @sakshamverma7477 8 месяцев назад

    samajh me aaa gye bhai jaaan bas isi tarah apni kirpa bnae rakhe please harry bhai

  • @NileshGuptaA-rr6yb
    @NileshGuptaA-rr6yb 8 месяцев назад +1

    pata nhi aisa kyun laga rha h ye course mere bhut se pasie bacha dega aur bana kar bhi dega
    thank u so much bhaiya #SigmaBatchOp

  • @saadbhai16
    @saadbhai16 8 месяцев назад

    Bro Keep making these masterpiece...

  • @Lack_Of_Enemies
    @Lack_Of_Enemies Месяц назад

    great lecture. Thank you

  • @mohammedanafm
    @mohammedanafm 5 месяцев назад +2

    I 'was' confused between fixed and sticky and thought sticky property was useless but the way harry bhai explained it cleared all my doubts. Also; this property may come handy mostly when dealing with navbars.

  • @feroz15438
    @feroz15438 4 дня назад

    I like in all the world Harry because Harry teaches too deeply

  • @muhammadwaeeem2349
    @muhammadwaeeem2349 8 месяцев назад

    Thanks for This consistent web development Course Harry bhai❤❤❤❤❤

  • @RangerUmbra
    @RangerUmbra Месяц назад +1

    sab samajh mein aagayi sirji

  • @girish_.
    @girish_. 8 месяцев назад +2

    🎉🎉🎉🎉 Sigma batch op I really like it.

  • @prasanthvaindam7113
    @prasanthvaindam7113 2 месяца назад

    sigma op, thank you very much for uploading the video

  • @sohilkhalifa3415
    @sohilkhalifa3415 2 месяца назад

    thank you sooo muuchh harry bhai for make my life better then my past i dont know how i say that you are how much helpfull in my life ☺ love you from kutch

  • @devanshkumar5588
    @devanshkumar5588 3 месяца назад

    Great Video!! ❤‍🔥❤‍🔥❤‍🔥

  • @apexpredator9143
    @apexpredator9143 8 месяцев назад

    Amazing. I never knew the exception caused by transform, perspective, filter.

  • @princerawat6490
    @princerawat6490 8 месяцев назад +1

    this vidio is very informative for me ,now my position chapter is cleadr .tq so much harry bhai

  • @bobin00
    @bobin00 8 месяцев назад

    thank big brother completed understand position property thank you so much

  • @vanshikawadyalkar4700
    @vanshikawadyalkar4700 4 месяца назад +2

    12:50 Smjh mai aagyi
    Apke teaching skills best hai, the way you show us each and every step + you give examples and keep us engaging

    • @wiwake
      @wiwake 2 месяца назад

      can i join u ?

  • @shikharbafna4119
    @shikharbafna4119 6 месяцев назад

    Amazing Course Harry bhai

  • @prashantsingh5142
    @prashantsingh5142 8 месяцев назад

    Finally i got the video which i needed .

  • @Samir-td4fr
    @Samir-td4fr 8 месяцев назад

    Aap bhot achha explain karte ho, sir . Sab samajh aa gya🔥👍

  • @sudarshanhazarika8662
    @sudarshanhazarika8662 5 месяцев назад

    Position samajh me aa gaya harry bhai

  • @lakshyamalhotra482
    @lakshyamalhotra482 6 месяцев назад

    wah Harry Bhai maza he aa gyaa ❤❤

  • @abhishekmathur1042
    @abhishekmathur1042 8 месяцев назад

    Sigma batch of yours harry bhai is OP🔥🔥🔥🔥🔥🔥

  • @webfxmentor4934
    @webfxmentor4934 Месяц назад

    Haqeqat mn maza a gya harry bhai

  • @AdarshPhani.04
    @AdarshPhani.04 5 месяцев назад

    high-level content....❤🔥

  • @utpalkant6354
    @utpalkant6354 25 дней назад

    Sacch mein maza aa gaya bhai.

  • @user-gu1cv7jk2e
    @user-gu1cv7jk2e 7 месяцев назад +1

    sir mja hi aa gya ye sb pdke

  • @Vanshikajain2004
    @Vanshikajain2004 6 месяцев назад

    smjh mein aa gyi absolute position.

  • @universalmeditationmusic9299
    @universalmeditationmusic9299 8 месяцев назад

    Best course on RUclips ❤❤ Harry Bhai

  • @adityapawar8290
    @adityapawar8290 2 дня назад

    what a video sirji bestttt📈📈📈📈📈📈

  • @niteshnayak940
    @niteshnayak940 День назад +1

    Literally maza hi aageya.....❤✨✨✨
    ⭐⭐⭐⭐⭐🎊

  • @Xyztwothree
    @Xyztwothree 22 дня назад +2

    great explanation

  • @redox3408
    @redox3408 8 месяцев назад

    Great explanation!

  • @shahriar_tamim
    @shahriar_tamim 8 месяцев назад

    Hats off to your effort Sir

  • @user-cw8fn8fh5z
    @user-cw8fn8fh5z 8 месяцев назад

    one of the best course

  • @KhalidKhan-wo7xg
    @KhalidKhan-wo7xg 8 месяцев назад

    En sary properities ko sun kar 😃😃😃MAZA AGIYA😃😃😃😃 THANKS SIR a lot of mis concept are cleared

  • @chirpy_ashi
    @chirpy_ashi 8 месяцев назад

    thank you harry sir for such an amazing video😄😄

  • @Xyztwothree
    @Xyztwothree 22 дня назад +2

    12:51 bhai samjh aagyi ✌✌👍👍🫡

  • @aayushrajpurohit321
    @aayushrajpurohit321 4 месяца назад

    Samajh me aa gae ye chiz ❤❤

  • @mansoorsarookkh
    @mansoorsarookkh 29 дней назад

    smjh mai aagaye ye chex

  • @ryuk7285
    @ryuk7285 23 дня назад

    behtreen smjhya bro

  • @SigmaCoder.
    @SigmaCoder. 8 месяцев назад

    Samj main aa gai mojhe ye cheez..😄👍🏻

  • @abhishekmathur1042
    @abhishekmathur1042 8 месяцев назад

    Sigma web development course of harry bhai is OP🔥🔥🔥🔥⭐⭐⭐⭐⭐

  • @ranaanas4375
    @ranaanas4375 7 месяцев назад

    Smj ma a gai ha
    Thnx harry bhai

  • @umerrshakeel
    @umerrshakeel 8 месяцев назад

    samjh m aa gayi bhai

  • @skalwaghe56
    @skalwaghe56 6 месяцев назад

    Your consistency for this course although not being free is god-level! #SigmaBatchOP

  • @swayanprakashnayak9745
    @swayanprakashnayak9745 7 месяцев назад

    samajh me aa gayi bro