Тёмный
Code Traversal
Code Traversal
Code Traversal
Подписаться
Hello guys, Welcome to this channel. Here I upload programming tutorials from HTML, CSS, Sass and JavaScript to Bootstrap, Tailwind CSS, and React JS. This channel will help you to learn about the basics of Web Development, Website Creation, Responsive Websites, CSS Animations, UI Design Tips and Tricks.

I hope you will learn something here. Do subscribe to this channel and press the bell icon to get the notification first.
CSS Float & Clear - Creating Dynamic Layouts
11:57
6 месяцев назад
CSS Fonts, Backgrounds & Border Properties
27:39
8 месяцев назад
HTML Entities | HTML Tags & More - Tutorial #12
17:21
9 месяцев назад
Id and Classes in HTML - Tutorial #11
8:25
9 месяцев назад
Inline and Block Elements in HTML - Tutorial #10
13:24
9 месяцев назад
Semantic Tags in  HTML - Tutorial #9
10:54
9 месяцев назад
Media Elements in HTML - Tutorial #8
16:56
9 месяцев назад
HTML Forms Tutorial - Tutorial #7
22:29
9 месяцев назад
HTML List and HTML Table - Tutorial #6
18:43
10 месяцев назад
Introduction to HTML CSS JavaScript - Tutorial #1
11:03
10 месяцев назад
Комментарии
@smtpserver
@smtpserver 3 часа назад
excellent work you work for us without any reward i appricate you
@AmanGupta-wu3cr
@AmanGupta-wu3cr День назад
can you provide the source code
@ujjwaljha1262
@ujjwaljha1262 День назад
Thanku soo much for this video
@faizbeg
@faizbeg День назад
Aapki awaz bahut achchi lag rhi h 😅😅 Thank you ma'am
@АлександрПлуталов-ъ4ш
в чем прикол калькулятора на eval()?
@AakashRajput-f6o
@AakashRajput-f6o 3 дня назад
good ma'am thankyou
@pradipgharami7934
@pradipgharami7934 3 дня назад
Here is a simple HTML code for an analog clock using CSS and JavaScript: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Analog Clock</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .clock { width: 200px; height: 200px; border: 8px solid black; border-radius: 50%; position: relative; background-color: white; } .clock .center { position: absolute; width: 10px; height: 10px; background: black; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; } .hand { position: absolute; background: black; transform-origin: bottom center; transform: translateX(-50%); } .hour { width: 6px; height: 60px; top: 40px; left: 50%; } .minute { width: 4px; height: 80px; top: 20px; left: 50%; } .second { width: 2px; height: 90px; top: 10px; left: 50%; background: red; } </style> </head> <body> <div class="clock"> <div class="center"></div> <div class="hand hour" id="hour"></div> <div class="hand minute" id="minute"></div> <div class="hand second" id="second"></div> </div> <script> function setClock() { const hourHand = document.getElementById('hour'); const minuteHand = document.getElementById('minute'); const secondHand = document.getElementById('second'); const currentDate = new Date(); const secondsRatio = currentDate.getSeconds() / 60; const minutesRatio = (secondsRatio + currentDate.getMinutes()) / 60; const hoursRatio = (minutesRatio + currentDate.getHours()) / 12; setRotation(secondHand, secondsRatio); setRotation(minuteHand, minutesRatio); setRotation(hourHand, hoursRatio); } function setRotation(element, rotationRatio) { element.style.transform = `rotate(${rotationRatio * 360}deg)`; } setClock(); setInterval(setClock, 1000); </script> </body> </html> This code creates an analog clock using HTML, CSS for styling, and JavaScript for moving the hands of the clock.
@menditeditz1431
@menditeditz1431 4 дня назад
Ma'am I completed javascript course with explanation
@JanakiNeupane-x7m
@JanakiNeupane-x7m 5 дней назад
hello mam please provide source code
@AmanRaja-w9r
@AmanRaja-w9r 5 дней назад
Ye Mera number Hai mereko coding sikha do
@divinagrb
@divinagrb 5 дней назад
Great video!
@SunnySunny-mh5do
@SunnySunny-mh5do 5 дней назад
Very nice teaching
@Rahulkumar-s5v5q
@Rahulkumar-s5v5q 5 дней назад
thank you so much Didi for providing practical knowledge on most important topic and covering all aspects of the project and teaching zero to hero level concept
@Need4Speed1483
@Need4Speed1483 6 дней назад
Very informative. Be happy
@smtpserver
@smtpserver 6 дней назад
recpected comments from suadia arbia thanks
@edugaru2480
@edugaru2480 8 дней назад
Thanks alot for the video
@PramodRajpoot02
@PramodRajpoot02 8 дней назад
Best video for HTML ❤
@DesignElementRamMandir
@DesignElementRamMandir 8 дней назад
Excellent...
@_Raja_Babu_5948
@_Raja_Babu_5948 8 дней назад
very nice projects and nice explanation , where is the source code?
@NEERAJKUMAR-ik4yp
@NEERAJKUMAR-ik4yp 8 дней назад
Gadi banana sikhaye
@notabdullah7120
@notabdullah7120 9 дней назад
How to open the side window where our clock is side by side showing?
@sumandeep6753
@sumandeep6753 9 дней назад
mire chota sa computer centre hai me v bacho ko sikhan k likha hai
@sumandeep6753
@sumandeep6753 9 дней назад
thanks madam g me starting say dakhi ap ki video muja bilkul nahi pta tha coding bare par apan bhut acha sikhaya ap best teacher ho
@bikashhaldar-kh5qs
@bikashhaldar-kh5qs 9 дней назад
Mera nahi ho raha hain kiya kare 🥺
@RomeesaKamal
@RomeesaKamal 10 дней назад
please make JavaScript tutorials for beginners.
@NourishDelights0
@NourishDelights0 10 дней назад
Thanks❤👍
@DigitalDesignDrive
@DigitalDesignDrive 10 дней назад
improve your teaching skills 🤫🤫🤫
@SultanMuhammadAltamash
@SultanMuhammadAltamash 10 дней назад
this is really valuable
@SultanMuhammadAltamash
@SultanMuhammadAltamash 10 дней назад
superbb .
@SultanMuhammadAltamash
@SultanMuhammadAltamash 10 дней назад
what a skilllllllllllllllllllllll
@RahulPal-d6s
@RahulPal-d6s 11 дней назад
super explanation
@FareedAbbas-q3c
@FareedAbbas-q3c 11 дней назад
Thank you for the fantastic tutorial! The project is truly impressive and well-executed. The instructions were clear and easy to follow, and the code was exceptionally well-organized. I appreciate the effort you put into making complex concepts accessible. Keep up the great work!.
@alihassan-r7e
@alihassan-r7e 11 дней назад
very good mam g, this is another way to learn left things. Thanks🥰
@MasrurAhnaf-sj1lp
@MasrurAhnaf-sj1lp 12 дней назад
i loved your work good job i appreciate you.
@RahulPal-d6s
@RahulPal-d6s 12 дней назад
mam your voice is so sweet and nice explanation
@alihassan-r7e
@alihassan-r7e 12 дней назад
Mam feel better after watching your video, and i myself a beginer programmer , 🥰🥰🥰
@dakhaniusman9644
@dakhaniusman9644 13 дней назад
Thanks a lot much needed
@shibsankardas5984
@shibsankardas5984 13 дней назад
I love your video bcz you explain each steps very nicely need more videos
@PradipGhosh-kz7ct
@PradipGhosh-kz7ct 13 дней назад
Baki buttons kya apne app hi kam kare ga unko to access hi nahi kiya😮
@smtpserver
@smtpserver 14 дней назад
nice
@aravetidinesh4618
@aravetidinesh4618 15 дней назад
Extremely useful for newcomers.
@mohadshoaib563
@mohadshoaib563 16 дней назад
Madam ji sry Kyun ki apki voice meri 😂 gf ki tarah hai.
@AdityavClass
@AdityavClass 16 дней назад
All html video seen
@mohammedsaif5601
@mohammedsaif5601 16 дней назад
Can i plz know by using which software output is running in chrome
@mohammedsaif5601
@mohammedsaif5601 16 дней назад
Can i plz know by using which software output is running in chrome
@mohammedsaif5601
@mohammedsaif5601 16 дней назад
Can i plz know by using which software output is running in chrome
@anuradhashukla8317
@anuradhashukla8317 17 дней назад
Mam the console showing null whenever i put any itrm to search how can i solve this
@jack_all_rounderi5805
@jack_all_rounderi5805 17 дней назад
Very nice lecture
@mohammedsaif5601
@mohammedsaif5601 17 дней назад
Firstly anyone can say if interviewer ask what is use of this website r app of recipe ,can we book it
@StudyMood999
@StudyMood999 17 дней назад
you are very good teacher ❤😊