O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
<!DOCTYPE HTML> <html> <head> <style type="text/css"> .circle{ width:200px; height:200px; background:red; border:2px double black; } .circle:hover{ background:yellow; border-radius:50%; } </style> </head> <body> <div class="circle"></div> </body> </html>
▶ Run Code
🖥 Output: