In this video,I explained the Introduction Of Angular and basic requirement for it. Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my YouTube Videos.
In this video,I explained interface in TypeScript . Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my Angular Playlist .Please visit my YouTube Videos . The code is as follows - interface.ts - interface Chat { // Chat is the interface name x: number, y: number } let doChat = (chat: Chat) => { // doChat - arrow function console.log("The value of x:- " + chat.x); // chat - parameter console.log("The value of y:- " + chat.y); } doChat({ x: 20, y: 40 }) interface1.ts - interface anik { x: number, y: number } let singh = (abc: anik) => { console.log(abc.x); console.log(abc.y); } singh({ x: 1, y: 2 })
In this video,I explained how to create Indian Flag using HTML CSS . Feel free to comment. For more, please subscribe and press the BELL icon. Please visit my Angular Playlist . Please visit my YouTube Videos . The code is as follows - HTML File - <html> <head> <title> Indian Flag </title> <link rel="stylesheet" href="flag.css"> </head> <body> <div class="flag"> <div class="stripe stripe1"> </div> <div class="stripe stripe2"> <div class="chakra"> <div class="spoke spoke1"> </div> <div class="spoke spoke2"> </div> <div class="spoke spoke3"> </div> <div class="spoke spoke4"> </div> <div class="spoke spoke5"> </div> <div class="spoke spoke6"> </d...
Hello everyone. In this video, I explained the frameset tag in html - HTML - Frameset Tag in html . For more, please subscribe the channel. If you have any doubt, please comment in this video. Check my playlist - HTML Playlist Please like, comment, share and subscribe.
Comments
Post a Comment