
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
font-size:50px;
}
h1 {
color: white;
text-align: center;
}
div{
width:200px;
height:10px;
background:green;
}
marquee{
width:350px;
height:60px;
background:none;
margin-left:210px;
margin-top:-150px;
}
</style>
</head>
<body>
<h1>Deepak</h1>
<marquee width="60%" behavior="scroll" direction="right" scrollamount="50" height="100px">
<div></div>
</marquee>
</body>
</html>

Comments