Day: December 5, 2019

What is the Use of Adobe XD CC In 2020What is the Use of Adobe XD CC In 2020

What is the Use of Adobe XD CC In 2020     Eliminate too long tasks with Repeat Grid. Quick drawing board, versatile. Fast, intuitive tools to help you design web applications. Automatically resize the elements for different screens. Create awesome animations between art drawings. It’s easier to stay on top of changes when icons […]

Best Top 5 Abode illustrator plugins or add ons for 2020Best Top 5 Abode illustrator plugins or add ons for 2020

Best Top 5 Abode illustrator plugins or add ons for 2020 Top 5 Abode illustrator plugins 1.Astute Graphics Illustrator plugin bundle It is compatible with Illustrator CC 2020 and it’s price is $119 per month for single user Astute Graphics Illustrator plugin bundle is a bunch of 16 plugins and is perfectly work to design […]

Simple Step By Step Javascript CalculatorSimple Step By Step Javascript Calculator

HTML Code <!DOCTYPE html> <html> <head lang=”en”> <meta charset=”UTF-8″> <title></title> <script src=”js/calcmodel.js”></script> <script src=”js/calccontroller.js”></script> </head> <body> <input type=”text” id=”firstNo” placeholder=”Type First Number”/> <input type=”text” id=”secondNo” placeholder=”Type Second Number”/> <button id=”addBt” data-operation=”+”>Add</button> <button id=”subtractBt” data-operation=”-“>Subtract</button> <button id=”mulBt” data-operation=”*”>Multiply</button> <button id=”divBt” data-operation=”/”>Divide</button> <h1>Result is <span id=”result”></span></h1> </body> </html> In Js Folder calcmodel.js var calcObject = { add:function […]