<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="div" onmouseout="onOut(this)" onmouseover="onOver(this)"></div> <script> function onOver(obj){ obj.innerHTML = "Hell0"; } function onOut(obj){ obj.innerHTML = "World"; } </script> </body> </html>