Script link comment marquee

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0"
<title>Title</title>
<link href="test.css" rel="stylesheet">

</head>
<body>
<div>
<marquee><h1>Computer</h1></marquee>
</div>

<div>
<marquee direction="right"><h1>Computer</h1></marquee>
</div>
<!--------Marquee Table------------------>
<table width="100%">
<tr>
<td><div > <marquee direction="up" scrollamount="32" style="height: 500px;background: rgba(198,120,226,0.66)"><h1>Computer</h1></marquee></div></td>
<td><div > <marquee direction="down" style="height: 500px;background: rgba(226,120,141,0.66)"><h1>Computer</h1></marquee></div></td>
</tr>
</table>
</body>
</html>

Comments