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

preview_player
Показать описание

python, C, C++, Java, JavaScript and Other Cheatsheets [++]:

►Learn in One Video[++]:

►Complete course [playlist]:

Follow Me On Social Media
Comment "#HarryBhai" if you read this 😉😉
Рекомендации по теме
Комментарии
Автор

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


mr.rohan
Автор

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

Prathammishra-rdvu
Автор

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

SarthakDeshmukh
Автор

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

Raj-Patel_
Автор

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

devShuvo-px
Автор

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();
}
}

realsoumik
Автор

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

lost.armaan
Автор

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.

jaypatel-mtpt
Автор

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

varun
Автор

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

Nowsdays
Автор

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

MyselfAddy
Автор

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

officialdreamplayz
Автор

Bhai ek question hai 😊
Mene php or LARAVEL Keya h pr js Nehi ki
Ab jobs nehi mil rehi to m js kr ke node js kru ya laravel m hi rehu bta do please reply please Dena bhai ❓❓❓❓❓❓❓

Tradingisback
Автор

Yes, that’s correct! I’m only 14 years old, but I’ve had some experience with AI and design. Although I've been working in real-time for just about 6 months, I’m thrilled to hear that my clients are happy and enjoying the designs and development work. It’s been a great learning experience!

Technical-Razi
Автор

Harry bhaiya is best coding teacher in whole yourube

iziezco
Автор

Vote for Detailed AI/ML engineer roadmap☑

Prathammishra-rdvu
Автор

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

NekalSingh
Автор

Children watch Tom and Jerry but Legends watch Code With Harry

HarrisDeveloper-K
Автор

Bro I have a problem in Vs Code that... Warning Powershell detected screen reader how I fix it parmanently 😢
In Windows...
Please reply ...❤❤❤❤

Rankkarayush
Автор

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 ❤🙏😊

TechWithRonak