top of page

Name Loader in CSS



<!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>





5 views0 comments

Recent Posts

See All

Stack Using Queue

A stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue operations. When an element is pushed onto the stack, it is enqueued

Queue Using Stack

A queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue operations. When an element is enqueued, it is pushed onto the enque

bottom of page