Learn HTML forms! - freeCodeCamp Curriculum

Sdílet
Vložit
  • čas přidán 27. 08. 2024
  • Found this hard? Learn the fundamentals of coding here: www.codewithan...
    🚀 Sign up to www.codewithan... to receive access for the final code.
    ____
    ⭐ Check out my IDE here and get 1 month free: jb.gg/get_webs...
    ⭐ New to code and none of this is making sense? Watch my '12hr+ CZcams Coding Bootcamp' in which you will learn HTML, CSS and JavaScript Fundamentals completely from scratch. It's on my channel and its 100% free.
    ⭐ In most videos I use Tabnine as my A.I autocompletion tool. You can download it for free here (I get no commission from this link, but am in a partnership): bit.ly/tabnine-...
    ⭐ You can get a blockchain domain with my affiliate link here: bit.ly/get-a-cr...
    ⭐ If you would like to buy me a coffee, well thank you very much that is mega kind! : www.buymeacoff...
    ⭐ Sign up for weekly coding tips from my newsletter partnership: bit.ly/JS-tips
    You can also find me on:
    Twitter: / ania_kubow
    Instagram: / aniakubow

Komentáře • 25

  • @mikalgoobric
    @mikalgoobric Před 10 měsíci +3

    Thank you Ania, for a great 'forms' course, needed this for a backend project; the link in video was for Rothko art; not how to link form data to a backend

  • @mwanikastudios
    @mwanikastudios Před 10 měsíci

    yOU ARe trUly the best at teaching code!! UNDISPUTEDLY THE BEST!!!!

  • @faroozahmad1090
    @faroozahmad1090 Před 10 měsíci +2

    Hlo Ania I am Glad to learn from my Best and Beautiful Mam

  • @dmilligan2302
    @dmilligan2302 Před 10 měsíci

    Thank you for this Ania! Very informative.

  • @paulthomas1052
    @paulthomas1052 Před 10 měsíci

    Great work - really useful. Thanks !

  • @SunnyPsychosis13
    @SunnyPsychosis13 Před 10 měsíci +1

    So eating that apple wasn't so bad afther all,. Angelically beautiful, devilishly smart
    Love it, but I've already thrown two computer screens out my window and seeing and hearing you is making my brain jump.

  • @cuteedukh
    @cuteedukh Před 10 měsíci

    Thank so much ania

  • @francescociulla
    @francescociulla Před 9 měsíci

    Hey Ania, how's it going??

  • @user-rx9bo1ri5x
    @user-rx9bo1ri5x Před 10 měsíci

    Thank you I am also Practice HTML / CSS Responsive , Give Some Tips .

  • @hoamkaow405
    @hoamkaow405 Před 5 měsíci

    Not--S(he)Why don't you just give out full HTML and CSS please 🙏 your skills are unique I'm a full beginner in web development! I really need a career in the tech field to support my family?...

  • @sosinformatique3470
    @sosinformatique3470 Před 7 měsíci

    Hi Ania i am french but i understand all you teach because of your small voice and slowly way you explain Greatful🙂

  • @sekretyit
    @sekretyit Před 10 měsíci

    Świetny materiał.

  • @MrBrady95
    @MrBrady95 Před 10 měsíci

    Nice!

  • @nitesan2814
    @nitesan2814 Před 10 měsíci

    Your shorts have an echo in the audio

  • @nameless-uq4jx
    @nameless-uq4jx Před 9 měsíci

    you deleted your simple calculator video, I bookmarked it because i am trying to learn javascript

  • @bharatspine
    @bharatspine Před 10 měsíci +11

    She looks like Barbie

  • @user-vt1pi7nx2w
    @user-vt1pi7nx2w Před 10 měsíci

    ❤❤❤❤

  • @rajunaidu7751
    @rajunaidu7751 Před 2 měsíci

    Fairy Tales 😱

  • @Rahul-ps9jw
    @Rahul-ps9jw Před 9 měsíci +1

    You Are Not Get Bored?😂

  • @_.xxx1234._
    @_.xxx1234._ Před 10 měsíci

    Yupp 💋💋💋💯

  • @vitezlucello
    @vitezlucello Před 9 měsíci

    Could this be written better / more modern / simpler:
    const sections = document.querySelectorAll("section");
    const navLinks = document.querySelectorAll("header ul li a");
    window.addEventListener("scroll", () => {
    let current = "";
    for (const section of sections) {
    const sectionTop = section.offsetTop;
    if (window.pageYOffset >= sectionTop - 60) {
    current = section.getAttribute("id");
    }
    }
    for (const link of navLinks) {
    link.classList.remove("active");
    if (link.classList.contains(current)) {
    link.classList.add("active");
    }
    }
    });