how to stop moving text in html when you hover over it

Solutions on MaxInterview for how to stop moving text in html when you hover over it by the best coders in the world

showing results for - "how to stop moving text in html when you hover over it"
Tanner
21 Jan 2020
1<head>
2	<meta charset="utf-8">
3	<title></title>
4	<style type="text/css">
5		marquee.move:hover {
6			cursor: pointer;
7		}
8	</style>
9</head>
10<body>
11<marquee class = "move" onmouseover = this.stop(); onmouseout = this.start();> hello</marquee>