Animated Indian Flag using Html and CSS Hey guys, hope you enjoyed this video and knew something about that how to make Animated Indian Flag . If you like this video and gained some knowledge then make sure to hit the like and subscribe button and also share this video to your friends and family so that they can also get some knowledge about this. I you want to see this video "Animated Indian Flag Using html and css" then click 'here' Source Code Html code as described in the video <! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta http-equiv = "X-UA-Compatible" content = "IE=edge" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Indian Flag </ title > < link rel = "stylesheet" href = "style.css" > </ head > < body > ...
Tree using Python Hey guys hope you enjoyed this video and learn something new about turtle module then make sure to hit the like share and subscribe button and also share this video with your friend and family sol that they can also get to knew If you want to see "Tree using python" video then click 'here' Source Code from turtle import * import colorsys hideturtle () speed ( 0 ) bgcolor ( 'black' ) pensize ( 5 ) h = 0.7 lt ( 90 ) def tree ( x ): global h c = colorsys . hsv_to_rgb ( h , 1 , 1 ) color ( c ) h += 0.004 if ( x < 10 ): return else : fd ( x ) lt ( 30 ) tree ( 3 * x / 4 ) rt ( 60 ) tree ( 3 * x / 4 ) lt ( 30 ) bk ( x ) tree ( 70 ) done ()