Squares | HTML CSS

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

КОМЕНТАРІ • 704

  • @learning-axis
    @learning-axis  Місяць тому +20

    Follow us on:
    Facebook: facebook.com/learningaxis01
    Instagram: instagram.com/learningaxis01
    TikTok: www.tiktok.com/@learning_axis
    LinkedIn: www.linkedin.com/company/learning-axis
    If You need Graphic designing and web development services please visit contact@learning-axis.com
    Source code: learning-axis.com/snippets/

  • @Smokeiziz-it3ru
    @Smokeiziz-it3ru 9 місяців тому +1129

    This guy demonstrates very advanced css knowledge. This is beyond impressive

    • @Florent-zh8px
      @Florent-zh8px 6 місяців тому +9

      Exécuter le code

    • @learning-axis
      @learning-axis  5 місяців тому +45

      thank you

    • @TomeshKanvar-j5l
      @TomeshKanvar-j5l 5 місяців тому +2

      Jf

    • @Hacker01388
      @Hacker01388 4 місяці тому +3

      @@learning-axis bhai center vala rotate nahi kar raha hai kiu?

    • @zivot92
      @zivot92 4 місяці тому +4

      Not really motivating for someone who just start out😂😢
      Phase where you strugle to make underlying text just to get animated

  • @Hamza_Bhai.
    @Hamza_Bhai. 6 місяців тому +928

    body {
    margin: 0;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    overflow: hidden;
    }
    .loader, .loader span {
    width: 10em;
    height: 10em;
    border: 0.25em solid white;
    font-size: 10px;
    border-radius: 1em;
    position: absolute;
    mix-blend-mode: screen;
    }
    .loader {
    background-color: gold;
    animation: rotating 2s linear infinite;
    }
    @keyframes rotating{
    to {
    transfoam: rotate(1turn);
    }
    }
    .loader span{
    animation: de-rotating 4s linear infinite;
    }
    @keyframes de-rotating {
    from, to {
    transform: rotate(0deg) scale(1.2);
    }
    50%{
    transform: rotate(-180deg) scale(1.2);
    }

    }
    .loader span:nth-child(1){
    top: 5rem;
    left: 5rem;
    background-color: dodgerblue;
    }
    .loader span:nth-child(2) {
    top: -5rem;
    left: 5rem;
    background-color: hotpink;
    }
    .loader span:nth-child(3) {
    top: 5rem;
    left:-5rem;
    background-color: mediumpurple;
    }
    .loader span:nth-child(4) {
    top: -5rem;
    left: -5rem;
    background-color: limegreen
    }







    these boxes are displaying on top instead of center
    while the main box which have class( loader) is not rotating
    so any body can give me solution

    • @Mirabbxs72
      @Mirabbxs72 6 місяців тому +9

      What Is this program for ?

    • @abhishekshakya6668
      @abhishekshakya6668 6 місяців тому +25

      body {
      margin: 0;
      height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: black;
      overflow: hidden;
      }

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

      @@Mirabbxs72Sublime Text

    • @dominusman382
      @dominusman382 5 місяців тому +12

      Bro trying XSS on UA-cam comment 🤡

    • @risalmohamad3933
      @risalmohamad3933 5 місяців тому +3

      Work?

  • @Swecchhaa
    @Swecchhaa 8 місяців тому +160

    Satisfying sound😭

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

      Is hee writing that fast and accurate naturally aur is he used any software

    • @Kitty_Aella
      @Kitty_Aella 11 днів тому

      Same

  • @OluwafemiTheYoung
    @OluwafemiTheYoung 3 місяці тому +2

    body {
    margin: 0;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    overflow: hidden;
    }
    the height is meant to be 100vh instead of 10vh

  • @pratikmohanty6360
    @pratikmohanty6360 6 місяців тому +89

    Fell in love with this Sound 💖

  • @whiteangel8722
    @whiteangel8722 2 місяці тому +105

    here the corrected code buddy

    body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    overflow: hidden;
    }
    .loader, .loader span {
    width: 10em;
    height: 10em;
    border: 0.25em solid white;
    font-size: 10px;
    border-radius: 1em;
    position: absolute;
    mix-blend-mode: screen;
    }
    .loader {
    background-color: gold;
    animation: rotating 2s linear infinite;
    }
    @keyframes rotating{
    to {
    transform: rotate(1turn);
    }
    }
    .loader span{
    animation: de-rotating 4s linear infinite;
    }
    @keyframes de-rotating {
    from, to {
    transform: rotate(0deg) scale(0.5);
    }
    50%{
    transform: rotate(-180deg) scale(1.2);
    }

    }
    .loader span:nth-child(1){
    top: 5rem;
    left: 5rem;
    background-color: dodgerblue;
    }
    .loader span:nth-child(2) {
    top: -5rem;
    left: 5rem;
    background-color: hotpink;
    }
    .loader span:nth-child(3) {
    top: 5rem;
    left:-5rem;
    background-color: mediumpurple;
    }
    .loader span:nth-child(4) {
    top: -5rem;
    left: -5rem;
    background-color: limegreen
    }

  • @arf3433
    @arf3433 5 місяців тому +28

    I’m a beginner to html and this is amazing! It actually worked!😆

  • @jkingenglish
    @jkingenglish Рік тому +450

    it's different watching this after learning about css and html. I want to type that fast oof

    • @ay.jay.09
      @ay.jay.09 Рік тому +2

      Like😅

    • @RI9246
      @RI9246 Рік тому +22

      I think he has used auto type feature

    • @Micha_Swart
      @Micha_Swart Рік тому +34

      ​@@RI9246and I think it's sped up.

    • @RI9246
      @RI9246 Рік тому +9

      See in the top at file name it is written auto type at last

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

      Auto type

  • @Cold_guide
    @Cold_guide 5 днів тому +1

    My satisfaction level after i saw this video 📈📈📈

  • @अभयदीप-ज1ग
    @अभयदीप-ज1ग Місяць тому +1

    Great भारतीय MUST BE TO ALL

  • @OluwafemiTheYoung
    @OluwafemiTheYoung 3 місяці тому +7

    you can also make the edges less sharp use
    border-radius: 50px;

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

    Keyboard sound is very perfect!!

  • @WvNTED
    @WvNTED Рік тому +23

    I done drifted off mid way until I saw the end 😂

  • @_Maliha_17
    @_Maliha_17 9 місяців тому +5

    I've tried this today this is absolutely amazing

  • @Uneek_Earnings
    @Uneek_Earnings Рік тому +170

    this is really awesome but i don't understand this code because i am beginner 😅

    • @learning-axis
      @learning-axis  Рік тому +71

      oh soon you will learn it

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

      Same 😂😂

    • @icandoit4385
      @icandoit4385 Рік тому +6

      ​@@learning-axisaap too yhee kahenge bro😅😢 kyuki hme nhi atta...
      but html ko seekhne ka best method btayiye

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

      ​@@learning-axismaster aap hi seka do

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

      Same 😂

  • @tegaemmanuel-y4k
    @tegaemmanuel-y4k 21 день тому +1

    Nice
    Thank you so much
    I learn so much things in this video

  • @Dixu_kay.
    @Dixu_kay. 7 місяців тому +15

    Every thing goes out of my mind

    • @alfredobarrios4017
      @alfredobarrios4017 5 місяців тому +1

      Esa cantidad de escriturad que logran buscar cin eso, son codigos establesidos que por regla hay que aprenderlo de memoria si o si Vaya Chevre.

    • @Calibre336
      @Calibre336 Місяць тому

      Html is easiest language you can learn within 2 hours.

  • @Inform_Boost
    @Inform_Boost Рік тому +5

    Result is nice ❤

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

    I also tried it in my phone and it happened..
    Thanks bro

  • @jansikuppusamy5352
    @jansikuppusamy5352 11 місяців тому +13

    I am like the sound

    • @abhaypaswan950
      @abhaypaswan950 5 місяців тому

      But upar to likha hai autotype😂😂

  • @izoo-mm9uk
    @izoo-mm9uk 3 місяці тому +2

    To code this just on memory is insane

  • @Man_Sullai
    @Man_Sullai 7 днів тому +1

    Love it.. so easy

  • @sound2bell448
    @sound2bell448 2 місяці тому +15

    ME WATCHING YOU WRITE CODE
    ME:-I KNOW HOW TO WRITE HELLO WORLD CODE😂

  • @dkrogerzin
    @dkrogerzin 29 днів тому +1

    Programation is Beatiful

  • @अभयदीप-ज1ग
    @अभयदीप-ज1ग Місяць тому +1

    OM ॐ नमः शिवाय

  • @Soulfulvibs
    @Soulfulvibs 15 днів тому +1

    Really impressed

  • @Riyansh-A8
    @Riyansh-A8 6 місяців тому +5

    The fact that you memorize every single function is incredible, I just use the internet to learn the syntax.

    • @rah.248
      @rah.248 3 місяці тому +1

      Dont worry, 90% of developers use google when coding

    • @Riyansh-A8
      @Riyansh-A8 3 місяці тому

      @@rah.248 ok lol.

  • @VivekYadav-vv3si
    @VivekYadav-vv3si 21 день тому +1

    Background Music + Coding + Coffee ❤

  •  6 днів тому +1

    bro is the machine.

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

    It's working dude
    I loved it ❤️❤️‍🔥

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

    Beautiful 👌🏼

  • @KareemEltigany
    @KareemEltigany 7 днів тому +1

    Thanks alot ❤❤❤

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

    Thank you sir this is awesome information news and learning today ❤

  • @zenkaiog
    @zenkaiog 15 днів тому +1

    Dat typing speed tho

  • @UnknownLegenD.123
    @UnknownLegenD.123 Рік тому +1

    Bhai maine kiya bohot beautiful tha thanks🙏🏻

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

    I'm a beginner and I just fall in love with coding again 😂😂

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

    This is so advance css coading language 😊😊🎉so amazing 😍🤩🤩

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

    Can u please make full tutorial vedio of html ,css,js ...😊

  • @your-advisor-friend
    @your-advisor-friend Рік тому +26

    really awesome

  • @Mindspectrum
    @Mindspectrum 27 днів тому +1

    I was really good 10-15 years ago and now I could not understand half of the css code.. So many changes since the good old years of "background-color:.." :D

    • @learning-axis
      @learning-axis  26 днів тому +1

      Things have definitely evolved! CSS has come a long way with features like Flexbox, Grid, and animations. But the basics like `background-color` are still the same-just with more powerful tools now!

  • @yasirujayathilaka5963
    @yasirujayathilaka5963 14 днів тому

    Hey bro don't type basic html commands in html file in sublime text. Instead type html and press the Tab button . I think it will usefull 😊

  • @dektra00
    @dektra00 3 місяці тому +2

    It worked, Amazing

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

    Good job. Keep it up

  • @oussamaabouhafs7756
    @oussamaabouhafs7756 3 місяці тому

    yeah it's working guys just don't forget to copy the body part span ...

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

    Just Wow❤

  • @SunilPal-in9en
    @SunilPal-in9en 10 місяців тому +1

    Super bhai ❤

  • @enter881
    @enter881 19 днів тому +1

    Thankyou this code is really working. I am the beginner, just copy the code and run it. But, please tell me why .loader is used?

    • @learning-axis
      @learning-axis  18 днів тому

      .loader is the class assigned to some element

    • @learning-axis
      @learning-axis  18 днів тому

      if you want to learn html visit
      ua-cam.com/video/8b-rgmbQTfk/v-deo.html

  • @ÁnhNguyễn-p8i
    @ÁnhNguyễn-p8i Місяць тому +1

    So great

  • @devotiveak4387
    @devotiveak4387 Рік тому +24

    How can we enable auto typer in sublime please tell me

    • @vikibhai6
      @vikibhai6 11 місяців тому

      Please reply bro

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

    i just changed my major from mechanical engineering to software engineering bc i want to do front end website development. seeing this honestly has me so scared and overwhelmed

    • @learning-axis
      @learning-axis  11 місяців тому

      cool you should start learning website development.

    • @TwizzyyyFN
      @TwizzyyyFN 11 місяців тому

      @@learning-axis i started learning html using codecademy earlier today. i got through all of the basic functions okay. i started to struggle a bit on table functions and that’s where i stopped for the day.

    • @saquibahmed5929
      @saquibahmed5929 5 місяців тому

      @TwizzyyyFN Hey, what’s you are learning now?

    • @TwizzyyyFN
      @TwizzyyyFN 5 місяців тому

      @@saquibahmed5929 i’m doing software engineering with a concentration in cyber security now

  • @sarah_ferguson
    @sarah_ferguson 9 місяців тому +1

    This inspires me to get a thocky keyboard, learn how to code, and create coding ASMR (audio & visual)

  • @el-op1vc
    @el-op1vc 2 місяці тому +1

    i have peaked and i understand most of this

    • @learning-axis
      @learning-axis  2 місяці тому

      That's great to hear! If you have any specific questions or need further clarification on anything, feel free to ask.

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

    Fantastic

  • @mdbappy7580
    @mdbappy7580 Місяць тому +1

    ভাইয়া ছোট একটা অনুরধ cyber security শেখার জন্য কোন কোন প্রোগ্রামিং ল্যাঙ্গুয়েজ শিখতে হবে।

    • @learning-axis
      @learning-axis  Місяць тому

      If you want to learn cyber security we offer paid course.

  • @aandresdev
    @aandresdev 11 місяців тому

    Very useful! Thank you so much!

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

    Wow that's awesome

  • @undrathiraviteja7514
    @undrathiraviteja7514 11 місяців тому +1

    Thank you ❤

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

    Mind blowing sir!

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

    Nice 😮

  • @webprogrammingtutorials-alo69
    @webprogrammingtutorials-alo69 Рік тому +1

    Excellent

  • @magnosantosoficial9378
    @magnosantosoficial9378 Рік тому +9

    Top demais show 🎉

  • @ROLEXGOD755
    @ROLEXGOD755 2 місяці тому +3

    After output me== tum kahna kya chahe te ho😂😅

  • @raushankumar-qp3rv
    @raushankumar-qp3rv 7 місяців тому

    You have good skills 😮

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

    Amazing!!

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

    ❤❤❤❤❤❤❤❤❤ Good work.

  • @no-brainer627
    @no-brainer627 5 місяців тому

    From this video i learnt that vscode is way better than sublime. Ofcourse hats off to your skills

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

    Great work

  • @Irediranokunmakinde
    @Irediranokunmakinde 4 місяці тому +1

    Love it ❤

  • @AtharvaXD-v1y
    @AtharvaXD-v1y 4 місяці тому +3

    chatgpt be like:meri shaktiyon ka galat estmal ho raha hai😂

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

    How does one get this good?😭😭

  • @GriffithEditz
    @GriffithEditz 11 місяців тому +5

    There was literally written ".auto-type" in the app title am i only the one able to see that

  • @ecommerce_rrj
    @ecommerce_rrj 4 місяці тому +1

    Which video editor you use sir? Please reply how to record the code like this and edit?

    • @learning-axis
      @learning-axis  4 місяці тому

      I use Active Presenter for editing my videos. To write the code, I use sublime text.

    • @ecommerce_rrj
      @ecommerce_rrj 4 місяці тому +1

      @@learning-axis can you make the video on how you record and edit your videos as well? Your editing is superb I had also tried but my quality degrade and it becomes blur

    • @learning-axis
      @learning-axis  4 місяці тому

      @@ecommerce_rrj I cannot make a video on this, but I can teach you personally. Feel free to ask any questions you have about recording and editing videos!

  • @BKM333
    @BKM333 5 місяців тому +2

    Tap on a clip to paste it in the text box.Welcome to Gboard clipboard, any text that you copy will be saved here.Use the edit icon to pin, add or delete clips.Touch and hold a clip to pin it. Unpinned clips will be deleted after 1 hour.

  • @SamsungA04e-dp7kj
    @SamsungA04e-dp7kj 8 місяців тому

    ALJABAR ABSTRAK
    Prof Dr Indah Emilia Wijayanti SSi MSi
    MATEMATIKA F-MIPA UGM

  • @riddleforasec
    @riddleforasec 4 місяці тому +4

    Why is nobody caring about his typing speed?

    • @yuuser1
      @yuuser1 3 місяці тому

      3x speed

  • @Apeski101
    @Apeski101 Місяць тому +1

    Impressive

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

    Awesome

  • @user-gq1bs1kn1l
    @user-gq1bs1kn1l 26 днів тому

    What is that sound please? I would like a 10 hour loop of it

  • @makansari1425
    @makansari1425 11 місяців тому +1

    lovely

  • @JafarTuychiyev-k7c
    @JafarTuychiyev-k7c 19 днів тому +1

    good

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

    Thanks

  • @FrancisInigoSibolinao
    @FrancisInigoSibolinao 7 місяців тому

    Amazing!🎉

  • @joserodriguesco
    @joserodriguesco 23 дні тому +1

    Eu consegui fazer. woowww top

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

    love it!

  • @vanpersiejohntez2728
    @vanpersiejohntez2728 Рік тому +12

    tried and partially worked,,, good for a start

    • @learning-axis
      @learning-axis  Рік тому +4

      cool

    • @monikakanojia8350
      @monikakanojia8350 10 місяців тому

      I have tried too but nothing displayed except black background
      Can you plz help me?

    • @learning-axis
      @learning-axis  10 місяців тому

      @@monikakanojia8350 I think You have made mistakes in the code.

    • @rahulphilip4909
      @rahulphilip4909 9 місяців тому +1

      ​@@learning-axistransform: rotate (1turn) isn't working

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

    informative

  • @oluwasesanibrahim2061
    @oluwasesanibrahim2061 9 місяців тому +1

    which software are yiu using please?
    Am a beginner,
    i need to download one on my window 10. which one will work properly

    • @learning-axis
      @learning-axis  9 місяців тому +2

      sublime text
      but Vs code is best

  • @OkorieAgnes-r8b
    @OkorieAgnes-r8b 3 місяці тому

    ❤wow super fan❤

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

    feel like ASMR video

  • @Collision-n1k
    @Collision-n1k 8 днів тому +2

    Can I do it in notepad?

  • @opatoyinbotaiwo
    @opatoyinbotaiwo Місяць тому +2

    I just want to start please any one here to learn me how to pull up 🙏

    • @learning-axis
      @learning-axis  Місяць тому

      you can start learning from this link
      learning-axis.com/html/

  • @skellingaming
    @skellingaming Місяць тому +1

    I'm new to this, could you please tell me the name of the app it?

  • @lostinownworld-lily
    @lostinownworld-lily 5 місяців тому +1

    Fantastic bro
    i finally did at 4th time

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

    How much time did it take to learn the skills f

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

    Hats of you bro ❤🎉

  • @OluwafemiTheYoung
    @OluwafemiTheYoung 3 місяці тому

    spininggg

    body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    overflow: hidden;
    }
    .loader, .loader span {
    width: 10em;
    height: 10em;
    border: 0.25em solid white;
    font-size: 10px;
    border-radius: 25px;
    position: absolute;
    mix-blend-mode: screen;
    }
    .loader {
    background-color: gold;
    animation: rotating 2s linear infinite;
    position: relative;
    }
    @keyframes rotating {
    to {
    transform: rotate(1turn); /* Full rotation */
    }
    }
    .loader span {
    animation: de-rotating 4s linear infinite, change-color 4s linear infinite;
    }
    @keyframes de-rotating {
    from, to {
    transform: rotate(0deg) scale(1.2);
    }
    50% {
    transform: rotate(-180deg) scale(1.2);
    }
    }
    /* Keyframes to change color while rotating */
    @keyframes change-color {
    0% { background-color: dodgerblue; }
    25% { background-color: hotpink; }
    50% { background-color: mediumpurple; }
    75% { background-color: limegreen; }
    100% { background-color: dodgerblue; }
    }
    .loader span:nth-child(1) {
    top: 5rem;
    left: 5rem;
    }
    .loader span:nth-child(2) {
    top: -5rem;
    left: 5rem;
    }
    .loader span:nth-child(3) {
    top: 5rem;
    left:-5rem;
    }
    .loader span:nth-child(4) {
    top: -5rem;
    left: -5rem;
    }
    /* Styling for the spinning name in the middle */
    .loader .center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: white;
    font-family: Arial, sans-serif;
    animation: spin-text 4s linear infinite;
    }
    /* Keyframes to spin the name */
    @keyframes spin-text {
    to {
    transform: translate(-50%, -50%) rotate(1turn); /* Full rotation */
    }
    }







    KingCyfa

    ENJOYYYY

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

    Aj again banaya ha ban gaya❤❤❤

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

    can we also put something like login kind of interface if its yes then how?

  • @khalnayak_adi
    @khalnayak_adi 4 місяці тому +1

    ❤❤❤