Friday, October 22, 2021

Navigation bar moving or Car Moving Through HTML and CSS Code

Navigation bar moving or Car Moving Through HTML and CSS Code

In this task, we move the navigation bar from left to right or right to left as you want. But in this Task, we perform an activity called car moving. car movies through HTML and CSS Code


Code:

<!DOCTYPE html>
<html>
<head>
<title>Car Moving</title>
</head>
<body style="background-color: yellow">
<marquee scrollamount="50" direction="left"><img src="car.png" width="500"></marquee>
<marquee scrollamount="50" direction="right"><img src="cr.png" width="500"></marquee>


</body>
</html>

No comments:

Post a Comment

String Array and passing method in java

 In this task, we pass a method and also cover the passing String Array to the method. Code:   import java.util.Scanner; public class String...