how to stop marquee text in html when you hover over it
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
marquee.move:hover {
cursor: pointer;
}
</style>
</head>
<body>
<marquee class = "move" onmouseover = this.stop(); onmouseout = this.start();> hello</marquee>