How much HTML, CSS and JavaScript is Enough to get a Job 🔥

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

КОМЕНТАРІ • 972

  • @mr.rohan07
    @mr.rohan07 3 місяці тому +199

    00:01 Focus on learning basic HTML, CSS, and JavaScript for web development jobs
    02:26 Understanding the basics of creating a website structure using HTML
    04:32 Focus on understanding key concepts and practical skills in HTML, CSS, and JavaScript without needing to memorize everything.
    06:13 Understanding the roles of designers, developers, and AI in web development.
    07:56 Learning JavaScript can enable full stack web development
    09:42 Learn essential JavaScript concepts and build projects
    11:23 Start by making 100 basic apps to learn and face problems.
    12:55 Continuous learning is key in web development
    ❤‍🔥❤‍🔥❤‍🔥❤‍🔥❤‍🔥❤‍🔥❤‍🔥❤‍🔥❤‍🔥❤‍🔥

  • @SarthakDeshmukh07
    @SarthakDeshmukh07 3 місяці тому +81

    Vote For Databases Management System Playlist OR One Full Video 😢🙏🏾

  • @AgrajDubey7
    @AgrajDubey7 3 місяці тому +764

    Vote for AI ML course

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

      Vote

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

      ​@@abrarahmed5909 consol.log("Vote")

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

      Generative ai course

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

      @TechTalksWithMahima sach batao aap Krish naik ko follow karte ho na

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

      ​@TechTalksWithMahimaapke channel p to ni h

  • @VaibhavSingh_code
    @VaibhavSingh_code 3 місяці тому +1292

    Vote for ML python Play list❤❤❤

  • @Prathammishra-rd6vu
    @Prathammishra-rd6vu 3 місяці тому +379

    DATA SCIENCE + SOFTWARE ENGINEERING = AI/ML ENGINEER
    Vote for Detailed AI/ML engineer roadmap

    • @s.vishnu4999
      @s.vishnu4999 3 місяці тому +1

      Yes

    • @Prathammishra-rd6vu
      @Prathammishra-rd6vu 3 місяці тому +1

      @TechTalksWithMahima and how you gonna do this????

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

      Mujhe bhi Banna hy pro​@TechTalksWithMahima

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

      ​@TechTalksWithMahimadidi lekin kaise ?

  • @shahzaibtariq9296
    @shahzaibtariq9296 3 місяці тому +8

    2019 the same statement "And I will see you next time" and 2024 the same statement
    "And I will see you next time". Really many things have been changed but your this statement at the end of the video has not changed. Continue uploading more informative vidoes like this. We really love your videos

  • @Raj-Patel_09
    @Raj-Patel_09 3 місяці тому +85

    "Learning is not a destination it's a journey"👌
    What a line said by @Harrybhai

  • @ayush.tiwarios2105
    @ayush.tiwarios2105 3 місяці тому +3

    00:01 Focus on learning basic HTML, CSS, and JavaScript for web development jobs
    02:26 Understanding the basics of creating a website structure using HTML
    04:32 Focus on understanding key concepts and practical skills in HTML, CSS, and JavaScript without needing to memorize everything.
    06:13 Understanding the roles of designers, developers, and AI in web development.
    07:56 Learning JavaScript can enable full stack web development
    09:42 Learn essential JavaScript concepts and build projects
    11:23 Start by making 100 basic apps to learn and face problems.
    12:55 Continuous learning is key in web development

  • @shuvosarkar8888
    @shuvosarkar8888 3 місяці тому +35

    There is no end of learning. keep building and keep learning.

  • @jaypatel-mt6pt
    @jaypatel-mt6pt 3 місяці тому +50

    Thank you Harry bhai I want this video. I am learning web development from your Sigma web development courses. I completed HTML and half CSS.

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

      same same boss,,,
      ..

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

      sigma batch op!!!!🔥🔥🔥

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

      how about the main one javascript .. which would run the whole web

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

      If you know bangla then i will suggest a channel (learn with sumit) from our Bangladesh who will teach you in depth thing.

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

      From WHICH college?

  • @mahdifarooqui
    @mahdifarooqui 3 місяці тому +121

    Vote for AI machine learning course

    • @Venom1234-j8s
      @Venom1234-j8s 3 місяці тому +1

      ​@TechTalksWithMahimahow ?

  • @realsoumik
    @realsoumik 3 місяці тому +12

    public class ArraySorter {
    // Function to sort an array of integers using Bubble Sort
    public static void sort(int[] arr) {
    int n = arr.length;
    int temp;
    boolean swapped;
    for (int i = 0; i < n - 1; i++) {
    swapped = false;
    for (int j = 0; j < n - i - 1; j++) {
    if (arr[j] > arr[j + 1]) {
    // Swap arr[j] and arr[j+1]
    temp = arr[j];
    arr[j] = arr[j + 1];
    arr[j + 1] = temp;
    swapped = true;
    }
    }
    // If no two elements were swapped by inner loop, then break
    if (!swapped)
    break;
    }
    }
    // Function to sort an array of strings using Bubble Sort
    public static void sort(String[] arr) {
    int n = arr.length;
    String temp;
    boolean swapped;
    for (int i = 0; i < n - 1; i++) {
    swapped = false;
    for (int j = 0; j < n - i - 1; j++) {
    if (arr[j].compareTo(arr[j + 1]) > 0) {
    // Swap arr[j] and arr[j+1]
    temp = arr[j];
    arr[j] = arr[j + 1];
    arr[j + 1] = temp;
    swapped = true;
    }
    }
    // If no two elements were swapped by inner loop, then break
    if (!swapped)
    break;
    }
    }
    // Function to sort an array of doubles using Bubble Sort
    public static void sort(double[] arr) {
    int n = arr.length;
    double temp;
    boolean swapped;
    for (int i = 0; i < n - 1; i++) {
    swapped = false;
    for (int j = 0; j < n - i - 1; j++) {
    if (arr[j] > arr[j + 1]) {
    // Swap arr[j] and arr[j+1]
    temp = arr[j];
    arr[j] = arr[j + 1];
    arr[j + 1] = temp;
    swapped = true;
    }
    }
    // If no two elements were swapped by inner loop, then break
    if (!swapped)
    break;
    }
    }
    // Main function to test the sorting functions
    public static void main(String[] args) {
    // Test sorting an array of integers
    int[] intArray = {4, 2, 9, 1, 5, 3};
    sort(intArray);
    System.out.println("Sorted integer array: ");
    for (int num : intArray) {
    System.out.print(num + " ");
    }
    System.out.println();
    // Test sorting an array of strings
    String[] stringArray = {"banana", "apple", "orange", "mango"};
    sort(stringArray);
    System.out.println("Sorted string array: ");
    for (String str : stringArray) {
    System.out.print(str + " ");
    }
    System.out.println();
    // Test sorting an array of doubles
    double[] doubleArray = {4.2, 2.5, 9.1, 1.3, 5.7, 3.6};
    sort(doubleArray);
    System.out.println("Sorted double array: ");
    for (double num : doubleArray) {
    System.out.print(num + " ");
    }
    System.out.println();
    }
    }

    • @cryptoparadoxx
      @cryptoparadoxx 27 днів тому

      now do the same using assembly language

    • @realsoumik
      @realsoumik 26 днів тому

      @@cryptoparadoxx Ugh... I had commented this to copy and paste somewhere. I forgot to delete it.😆

  • @MyselfAddy
    @MyselfAddy 3 місяці тому +19

    Harry bhai , please AI and ML ka course karwao😢 ❤

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

    While "Nakal krne k liye aakal chahiye." == True:
    pasting='ok'
    debugging ='ok'
    finalizing ='ok'
    deploying ='ok'
    😊

  • @Nowsdays
    @Nowsdays 3 місяці тому +21

    Sir, Ek tutorial bana dijiye " Data Analysis" ke uper with projects.

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

    best part of the video, 100 nayi apps banao, 50 problems aayegi or 35 cheeze seekhoge 11:25

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

    How to Create an Image Slider in HTML CSS and JavaScript step by step || Image Slider : ua-cam.com/video/zJCTMw1b2cs/v-deo.html

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

    Thank you for the motivation ! bs eski hi jarurat thi abse firse learning start kr dunga abhi se

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

    Nothing is 100% in programming, Awesome talk Harry Bhai. 💥

  • @sahil704
    @sahil704 3 місяці тому +18

    Jhakkas harry bhai ❤

  • @TechWithRonak98
    @TechWithRonak98 3 місяці тому +6

    Thankyou Harry bhai apne meri sabse badi problem ko solve kar diya, mujhe is question se related bahut jyada confusion aur stress tha but ab nahi hai, because apne jitna bhi is video me bataya hai utni HTML, CSS and JS mujhe abhi hi aati hai, so ab mujhe full confidence aa gya bhai ❤️ thankyou so much ❤🙏😊

  • @mobizino2.o50
    @mobizino2.o50 3 місяці тому +7

    Thank you or Sigma Web development se mujhe bhut help mele Thank you so much Mota bhai😊

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

    Do you know bro. You are best in your field. UA-cam + code = harry

  • @Aumchoudhary-ez4rq
    @Aumchoudhary-ez4rq 2 місяці тому

    lordicon - icons
    html - basic structure
    css - use ai - give image and ask question - learn as time passes
    js
    make basic project
    basic app
    then angular
    ............

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

    Nowadays beginners directly starts learning React or Angular or any other frameworks without properly learning vanilla JS. They learn Tailwind CSS without learning vanilla CSS. Then they suffer later.

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

    Right! If we spend time learning all the syntaxes of CSS, it will take away my valuable time.

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

    Thank you for the video. I currently do projects using React and Tailwind CSS . And soon learn NextJS. Thanks to u Harry sir ❤👍

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

    kaash ye video tab miiti jab mai html sikh rha tha
    Nice Video ❤

  • @Thegreatkapilsharmaashow
    @Thegreatkapilsharmaashow 3 місяці тому +11

    Vote for spring boot playlists ❤

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

    You're a great teacher 😊 Actually you explain yourself in your videos😊 Based on hard practice--experiences❤

  • @who-w4s
    @who-w4s 3 місяці тому +35

    If I start a yt channel as a learner and teach full frontend from basic to advance who follow me ??

  • @Anonymous-12398
    @Anonymous-12398 3 місяці тому +2

    "nakal ke liye bhi akal ki zarurat padti hai" best line✌

  • @HLGAMING-OFFICIAL
    @HLGAMING-OFFICIAL 3 місяці тому +3

    Great Harry ❤ I am using Chat Gpt and this increase my learning speed and productive 10x faster then before and now I have a complete knowledge that on which place. How to use Ai for getting accurate response.

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

    Thanks for clearing my doubts I am a diploma student in information technology as I've developed a website for my industrial training and now I have to build a full stack website for CPP project but I was really confused should I use AI or not for getting code but you have cleared all of my doubts and this video helped me alot❤

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

    aapki right side wali mooch zyda hai as compared to left wali se 😂 😂

  • @Mycomputer-g1e
    @Mycomputer-g1e 17 днів тому

    well....I am new to your channel I heard about your channel Mr. Harry but I didn't watch i just watched your video its amazing thanks for the guide will be your new subscriber and yeah my plan was to learn all the JS , CSS , HTML from your channel but as I already started learning from APNA COLLEGE sooo...as we should not shuffle in between so I will continue there. But still your videos are helping me and "Learning is not a destination it's a journey"👌This line is really amazing thank you soo much for your Golden Words .
    Love from India Hyderabad & live in UAE 💜💜

  • @codevichar01
    @codevichar01 3 місяці тому +12

    Vote for Full Data Science Course

  • @MuhammadFurqan-rr2pr
    @MuhammadFurqan-rr2pr 3 місяці тому +7

    Video quality is very good 👍

  • @anonymoussaifi
    @anonymoussaifi 3 місяці тому +13

    badiya bataya bhai ne

  • @Shash_anime
    @Shash_anime 3 місяці тому +8

    Respect of code with Harry ❤❤

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

    The most informative video for freshers.... Thanks bro

  • @mrwhosetheuneek
    @mrwhosetheuneek 3 місяці тому +31

    Age 20yr = Experience 30yr

  • @amanisrar5708
    @amanisrar5708 3 місяці тому +11

    Sir JavaScript is so hard. I learn html and css and I also making the webs like w3 schools and I also made CV. I practice html and css but I am confuse in learning JavaScript 😢

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

      same brother😢

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

      bhai mene to java vi basics kiya... but unable to properly understand😢

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

      bhai same , html css advanced ata ha, or js basic or ab smjh ni ara job kase milegi
      kha milegi or kya krna pdega

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

      Javascript ko practically smjho sirf Console.log krke mt seekho projects me basic jo bhi aata hai uska use kro tb smjh aayegi bhai html css isliye smjh aa jati h kyuki usme output ke naam pr kuch display pr hame dikh rha hota hai for example border ka use kiya tumne or ek border ban gya html mai input ka use kiya display pr input aa gya but javascript me logic lgana padta hai

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

    Me itna bana leta hu but uske baad mene sab chhod diya sochkar ki kuch nahi aata mujhe, aaj video dekhkar pata laga ki seekhna kabhi khatam nahi hoga cahe jitna seekh lo

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

    Probably abhi harry ko bhi AI/ML itna detail mein nhi pata isliye baar baar course maang ke kuch nhi hoga😂😂

  • @GudduMishra-m6r
    @GudduMishra-m6r 3 місяці тому +2

    Harry sir You are really a great teacher for supporting your students and also full of motivation.. Thanks a lot SSIr

  • @officialdreamplayz
    @officialdreamplayz 3 місяці тому +11

    well explained and rightly said, i have been using gpt from 2 years and my productivity increased a lot and enjoying gpt 4 and 4 mini as well

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

      bhai frontend kar rahe ho kya office mai copy paste karne dete hai kya

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

      @@rockpaper9675 don't know sir mai student hu 1st year 🥲

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

    Learning is not everything but doing practically matters

  • @HarrisDeveloper-4K
    @HarrisDeveloper-4K 3 місяці тому +37

    Children watch Tom and Jerry but Legends watch Code With Harry

    • @krishmehta7903
      @krishmehta7903 3 місяці тому +12

      matalab kutch bhi comment likh dene ka 🤣🤣😂

    • @Marshall...-_-1101
      @Marshall...-_-1101 2 місяці тому

      Legends know their responsibility and Dharma.

  • @lost.armaan
    @lost.armaan 3 місяці тому +24

    Am 16 year old and currently i know HTML, CSS, JavaScript, Python and C++. Right now am learning react from youtube and django + mysql from offline institute, i am trying to find work on online website but i am not completely sure how to, upwork requires to buy connect to apply which i cant afford and fiverr i've been trying but no work how exactly do i start finding work

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

    Thank-You very much Harry bro ... !

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

    Harry bhai ko kon kon Dil se Manta hai like kro❤👇

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

    Data science 200 days by Code with Harry vote 👉🏻

  • @VlogAnshiworld
    @VlogAnshiworld 3 місяці тому +27

    Teacher ❌ teacher ultra pro Max legend ✅. 🤜🤛

  • @AI-WORLD07
    @AI-WORLD07 3 місяці тому +3

    love you bhava from maharashtra really great knowledge

  • @Deepak_kushwaha_04
    @Deepak_kushwaha_04 3 місяці тому +9

    Harry Bhai is Sigma web development course enough to get a job??

  • @SUSPENCESTORY-y8j
    @SUSPENCESTORY-y8j 3 місяці тому

    Bohat acha Bolta he yaar mazah aagaya tujhe se seekhoon ga main .I am 40 years old can I still learn

  • @sanantra_lvt
    @sanantra_lvt 3 місяці тому +16

    challange:harry potter theme website of chatbot(coded only in math module and numpy)
    twist:django

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

    Mera fayda ho gaya me abhi html shikh raha hu 😂

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

      Mat Sikh .... Web development Aaj kal bacho ka chiz hai 😂

    • @ManoranjanMurmu-b9v
      @ManoranjanMurmu-b9v 2 місяці тому +2

      Sikh bhai kisi ki bakwas mt sun

  • @avijitdandapat3304
    @avijitdandapat3304 21 день тому

    that journey is like an Endless loop where you grow with learning... and where I'm on that way.. Thanks Harry Bhaiya for that Sharing..

  • @Prathammishra-rd6vu
    @Prathammishra-rd6vu 3 місяці тому +40

    DATA SCIENCE + SOFTWARE ENGINEERING = AI/ML ENGINEER
    Vote for AI/ML engineer roadmap ☑

  • @AliAyaanSiyal
    @AliAyaanSiyal 8 днів тому

    bro i am 13 years old but i can work with pandas, numpy, mysql, matplotlib, python because of harry bhai🙉💘

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

    ❤ Thanks Teacher!

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

    yeah! this is very serious video and your speech is very good speech
    thanks for this video

  • @user-iz8ie6zc9o
    @user-iz8ie6zc9o 3 місяці тому +9

    Harry bhaiya is best coding teacher in whole yourube

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

    Thank you sir you saved my time i was thinking to learn css deeply without jumping to js😅

  • @varun1017
    @varun1017 3 місяці тому +62

    Fact: HTML, CSS and JS is not enough to get a job

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

      Why and What require then ?

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

      @@PaulSachin0016 MERN Stack + DSA(Leetcode)

    • @vishaler7451
      @vishaler7451 3 місяці тому +17

      ​@@PaulSachin0016 it's a very basic thing to know all these. U need a primary language like c++, java or python for development, a database such as SQL and frameworks like react or angular. DSA is needed along with these and companies ask for aptitude skills in first rounds of interviews. SO only html css and js is not enough

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

      ​@@vishaler7451first year mai hai kya 😂

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

      It is the language but angular or react is framework which should be learn and after that DSA and backend matters

  • @Prathammishra-rd6vu
    @Prathammishra-rd6vu 3 місяці тому +32

    Vote for Detailed AI/ML engineer roadmap☑

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

    Ali bhai apka Sigma web development ji class chal rhi apki 24 episode dekh liye hain me ney abhi tak ❤❤❤

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

    Love you Harry bhaiya ❤❤❤ you are great teacher in the world ❤❤❤❤

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

    NAKAL ke liye bhi AKAL ka jaroorat hota Hai ❤️‍🔥

  • @thelunatiK
    @thelunatiK 3 місяці тому +8

    SIGMA BATCH OP🔥

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

    vote for networking course

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

    Vote for c++ projects 😢

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

    Respect button for Harry sir❤❤❤

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

    Vote for ethical hacker full course ❤👨‍💻💻

  • @ShoukatZada-y7e
    @ShoukatZada-y7e 3 місяці тому

    I'm Isha and l like your videos and it's very good and helpuful❤❤❤❤❤❤ I am lucky because you are my teacher and my brother

  • @SAIKATPAUL-nj7mb
    @SAIKATPAUL-nj7mb 3 місяці тому +7

    ok harry new viewer i already subscribed.. thanks

  • @idy7706
    @idy7706 25 днів тому

    Nowadays HTML,CSS,Js is like basic of everyone, it's not enough for getting a job

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

    You are amazing ❤

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

    Please sir make a full course on web development 🙏

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

    Even after becoming a full stack developer mainly thanks to harry , sheryian and hitesh bhai....these types of videos still excites me.

  • @ShaikhMuhammad-vo5uv
    @ShaikhMuhammad-vo5uv 3 місяці тому +3

    Launch video on c++ like python and c

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

    "Programming language se darne ka nahi, jab tak Harry Bhai yahan hai, code likhne ka tension nahi!" 😄

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

    Vote for Flutter course 🙋

  • @SachinKumar-Jha
    @SachinKumar-Jha 3 місяці тому

    HTML,CSS,JS full course with ai from scratch to adv web developer

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

    Harry Bhai please guide who is the best language for webdevelopment today modern time very fast today 😢

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

    Thanks for guiding bhaiya❤

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

    Sir Outstanding Sir Allah ap ko mazeed kamayab krey Ameen! From Pakistan

  • @jyotish.k.jha02
    @jyotish.k.jha02 3 місяці тому

    Great to listen to the important factor of web development

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

    pythin is very good

  • @SaifUdin-r6g
    @SaifUdin-r6g Місяць тому

    Great job man

  • @Software_engineer1-c4q
    @Software_engineer1-c4q 3 місяці тому +7

    Vote For 1st Year Student 😊

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

    Mujhe Job Nahi Mil Raha Harry Bhai Mene Sab Shikh Hi Liya Hai Almost Fresher Job Kaha Milega, Ab To Mujhe Lagne Laga Hai Ki Web Development Me Mera Bohot Waqt Barbaad Ho Gaya 😔😭🙏

    • @respect-editz6918
      @respect-editz6918 3 місяці тому +1

      Kya kya sikha hai bhai

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

      @@respect-editz6918 HTML, CSS, bootstrap, JavaScript, jQuery, Node.js, Express.js Aur Mongo DB

  • @RishiYT30
    @RishiYT30 3 місяці тому +10

    Vote for BCA student 😊

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

    Vote for Data Science And Machine Learning Using Python

  • @shubham_M7777
    @shubham_M7777 3 місяці тому +28

    #Harrysir
    Please make detailed video on freelancing.
    Can I make a career in freelancing as a Web developer? It is compulsory to learn back-end development or only frontend is okay for freelancing? Someone said clients, companies want overall skillful people who knows back-end and front-end development, that's why I'm asking it.
    Everyone is learning web development, all the front end developers have made gigs, there is saturation on the freelancing platform, so how to survive, how will anyone give work to the new ones?
    And can we do this for lifetime, can we secure it by making a career or will we have to do a job??
    You know anything can happen when go online, ( what if) all your business shut down suddenly... What if UA-cam, website or social media shut down, we already experienced that, now we often see social media shuts down occasionally.
    So can you make career in all these field if you're drop out and can't find your career???
    Also here is my question: 👇🏻
    1. How to take it as business?
    2. How to find clients?
    3. What to do when you're sick or on vacation, traveling, how to handle clients then?
    4. How to scale your business?Or you need to do job or any other income source for survival?
    5. After learning one skill you need to learn another skill for freelancing?

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

    Thank you Bro.....❤
    Learn Burn And Earn 🎉

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

    Vote for react play list ❤

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

    harry bhai ek java pr full new core se advance tk ka course dal do pleaseeee