O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
<!doctype html> <html> <head> <script language="javascript" src="angular.min.js"></script> </head> <body> <h1>Background Changer</h1> <div ng-app="" ng-init="myCol='lightblue'"> <input style="background-color:{{myCol}}" ng-model="myCol"> </div> </body> </html>
▶ Run Code
🖥 Output: