List a Marquee

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="John Doe">
<link rel="">
<style>
#home{
background: rgb(103, 103, 228);
height: 500px;
}
#about{
background: rgb(69, 209, 57);
height: 500px;
}

#Contact{
background: rgb(209, 161, 57);
height: 500px;
}
</style>
</head>
<body>
<a href="#home" target="_blank"> Home</a>
<a href="#about" target="_parent"> about</a>
<a href="#Contact"> Contact</a>

<div id="home">
<h1>Home</h1>
<ul start="5">
<li>Item1</li>
<li>Item1</li>
<li>Item1</li>
<li>
<ol>
<li>Item1</li>
<li>Item1</li>
<li>Item1</li>
</ol>
</li>
</ul>


</div>
<div id="about">
<h1>About</h1>
</div>
<div id="Contact">
<h2>Contact</h1>
</div>

<marquee direction="left">
<h1>
Computer
</h1>
</marquee>
<marquee scroll="100" direction="right">
<h1>
Computer
</h1>
</marquee>
<marquee direction="up">
<h1>
Computer
</h1>
</marquee>
<marquee direction="down">
<h1>
Computer
</h1>
</marquee>
</body>
</html>

Comments