HTML CSS JS projects (Beginner): 16 projects using HTML CSS and JavaScript

HTML CSS JS projects (Beginner): 16 projects using HTML CSS and JavaScript

JavaScript King

2 года назад

1,065,649 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Sary Shleweet
Sary Shleweet - 26.09.2023 10:08

Thank you for the great content, loving it! Currently, following the third project in the list but I noticed a little problem with the JS index for the clock exercise. It actually does not add a 0 for the hours between 1 pm and 9 pm, because the program is reading these as 13 to 22 and only fulfiling the condition of h < 10 by adding a 0 to any hour that is less than 10 but ignoring any other condition thus not adding a 0 for 1pm all the way to 9 pm. I fixed that with the following code:

if (h>= 13 && h<22 ){
h = `0 ${h - 12}`;
}
else if (h < 10) {
h = "0" + h;
}
m = m < 10 ? "0" + m : m;
s = s < 10 ? "0" + s : s;

It seems to work perfectly on my computer, what do you think of it?

Ответить
Muhammadkarim Salimjonov
Muhammadkarim Salimjonov - 17.09.2023 11:00

hi, on the clock app, with this code will not change AM to PM when it's 12 afternoon!!!

Ответить
Roger Andy
Roger Andy - 11.09.2023 14:31

it is practical for me! thx so much

Ответить
kevin mcgee
kevin mcgee - 03.09.2023 13:52

Hi Mate i have started doing your tutorials when i am adding the background imgae it repeats how can i do it so the image covers the whole back ground in 1 go instead of images reperting untill the body is full thank u

Ответить
zyshaan
zyshaan - 29.08.2023 05:21

Best one yet i know am a noob but this tutorial is clear and on point please continue do more of this

Ответить
莊博錩
莊博錩 - 28.08.2023 15:57

Hello I am from Taiwan , and I saw your video really helpful and easy to follow. I could not thank you enough, you are the genius teacher, I saw so many lesson but I just give up in the middle of lesson, but yours lesson I just go through from the begging to the End and still want to watching again...... I am really thanks you.

Ответить
Crick News
Crick News - 27.08.2023 19:48

Hi Sri why he show me native code

Ответить
Navi and Alex kids Show
Navi and Alex kids Show - 25.08.2023 22:53

I am learning all your projects ,it gaves me an advantage to learn css, html and JavaScript all at once, you are the best teacher for me thank you for helping.

Ответить
react channel
react channel - 24.08.2023 19:48




❤❤❤❤❤ Merci

Ответить
Ryan Balaguer
Ryan Balaguer - 24.08.2023 17:36

Thank you for the tutorial, this way I became familiar with all html, css and javascript.

Ответить
Ramshah
Ramshah - 24.08.2023 14:44

in multiplication app (2nd project) , my score doesnot refresh to zero every time on refreshing the page ,it just continue from the last score e.g 4 ..
plz help me with that

Ответить
Alex Chiu
Alex Chiu - 24.08.2023 13:59

Thank you so much for sharing these tutorials, Im must say is a great tutorial video for all beginner like myself and it helped me out greatly. I just have a question and hopefully you can share some lights. In the digital clock tutorial, the code define the switch from AM to PM is not functioning properly since the h will never exceed 12, is there a solution to this issue and will the minutes and seconds also play a part in it? Much appreciated for your time and best wishes to you!😊

Ответить
Zihan Ibrahim
Zihan Ibrahim - 22.08.2023 13:08

i couldn't figure out how to publish this on github

Ответить
Best of Football⚽️
Best of Football⚽️ - 22.08.2023 05:40

Hello JS i am a very new beginner with you as my first lessons, I am trying to follow you step by step, meaning each step you are making I pause and do likewise then press play, now I think I hit the wall mind you I am still right at the beginning of the first lesson html, to with me when I right click it doesn't show the live preview: show preview now I don't have that option to click on, I can't tell why but every other steps have been a success until this one?

Ответить
Akash Badgujar
Akash Badgujar - 20.08.2023 08:50

For Multiplication App, I am not able to print a random number... Instead my browser is printing ${num1}. Can anybody tell what am I possibly doing wrong?

Ответить
Mohammad Reza Movaheadniya
Mohammad Reza Movaheadniya - 19.08.2023 02:46

perfect❤❤

Ответить
se emprendedor online
se emprendedor online - 17.08.2023 00:39

i'm just learning english, but I think I quite understand you

Ответить
Nesika Krish
Nesika Krish - 16.08.2023 18:58

I have a doubt in digital clock project ... in ...if(h>12) and the conditions were given...for that it is showing am for morning itself.....can you pls clarify it.

Ответить
Johnny
Johnny - 14.08.2023 21:31

I loved the incorporation of everything in a single project. Instead of just uploading a setup with the css and html already done, you do everything alongside us from scratch. I love your approach, I've learned a ton! Thank you!

Ответить
Happenings Around The World with Freedom Osato
Happenings Around The World with Freedom Osato - 10.08.2023 11:30

You have demystify Web development with these projects. I'm enjoying every bit of the video. Thanks so much, sir.

Kindly simplify this expression as it's taking me more time to understand

great.addEventListener("timer", ( ) => { greatVideo( );

});

Ответить
mohammad mirzaei
mohammad mirzaei - 03.08.2023 12:44

merc

Ответить
Reflected Thoughts
Reflected Thoughts - 02.08.2023 09:21

I was curious to have more tutorials like this and luckily I found them on your channel, thanks for the effort!

Ответить
Reflected Thoughts
Reflected Thoughts - 01.08.2023 10:20

❤❤❤
I suggest a bit of tweaking in the JavaScript code, the part where am is converted to pm so it should be,
if (h >= 12) {
if (h > 12) {
h = h - 12;
}
ampm = "PM";
} else {
ampm = "AM";
}

The reason for this change is that at 12pm the clock doesn't show pm but am.

Ответить
Arun Saklani
Arun Saklani - 29.07.2023 13:19

Why my add event listener not working on multiplication job

Ответить
lalit mishra
lalit mishra - 28.07.2023 18:24

they are easy and you actually understand the whole logic behind everything through these line.khamsa-mida

Ответить
Bondo Asanidze
Bondo Asanidze - 23.07.2023 21:11

Thank you!

Ответить
Nazaire
Nazaire - 23.07.2023 19:00

the clock didn't work for me please help

Ответить
Great
Great - 20.07.2023 14:27

what a great 16 projects man!

Ответить
Ali Azimi
Ali Azimi - 20.07.2023 06:10

Wow! This web app dev tutorial is super amazing! 🌟 Thank you so much, Sahand, for creating such an incredible course. It's truly practical and has made my life much easier. Keep up the fantastic work! 💯, cheers 🍻 , ali

Ответить
jai janasena
jai janasena - 19.07.2023 09:24

sir could you please send random color generator code

Ответить
Anime Z Shorts
Anime Z Shorts - 18.07.2023 15:00

fantastic ❣

Ответить
aami
aami - 13.07.2023 08:05

I was little nervous bcz i had no clue where have to start JavaScript from basics but now i found your video i feel more confident i will complete all projects as soon as possible .

......thank you a lot for providing us with this video 👍

Ответить
Acting Flu
Acting Flu - 02.07.2023 12:56

project 2 : - when ever i start again it shows previous score not from 0 Why?

Ответить
Neil TV
Neil TV - 23.06.2023 05:56

Did you use any extension for these?

Ответить
Knows Better
Knows Better - 22.06.2023 14:54

You are great.....

Ответить
mohammad pixel
mohammad pixel - 19.06.2023 23:27

عالی great

Ответить
tachfine
tachfine - 15.06.2023 19:57

let arr=['1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'];
let content = document.querySelectorAll('.content');
window.addEventListener('DOMContentLoaded',function(){

content.forEach((e)=>{
let h='#'
for(i=0;i<6;i++){
let random = Math.floor(Math.random()*arr.length)
h=h+arr[random]
}
e.style.backgroundColor=h
e.textContent=h
})
})

Ответить
Wisdom Jordan.
Wisdom Jordan. - 08.06.2023 21:24

I would also love to inquire, which backend language should I learn. thanks sir. God Bless You.

Ответить
Wisdom Jordan.
Wisdom Jordan. - 08.06.2023 21:23

I have been in web development for only 2 months, I can do good html/CSS code, and learnt JavaScript as well. you have made me appreciate the use of JavaScript and thanks so much for that.

Ответить
TECH-Mind REsearch
TECH-Mind REsearch - 08.06.2023 19:53

Use of JavaScript functions are not clear and lot of mistakes with the presentations. The function given is not working. That is a waste of time.

Ответить
AMRIT KUMAR
AMRIT KUMAR - 06.06.2023 19:00

Your digital clock is not changed by the difference between AM and PM. Please try to solve your solution

Ответить
Alinane Banda
Alinane Banda - 02.06.2023 16:01

Do you offer online courses Sir?

Ответить
Ajay Adhikari
Ajay Adhikari - 28.05.2023 05:11

great projects, thank you very much❤❤

Ответить
Yabba Doo
Yabba Doo - 27.05.2023 17:46

I have a footer with random quotes displaying at every refresh. (SQLite DB) so I animated it using this project. Works great! Thank you.

Ответить