Name Loader in CSSCode CrazeAug 17, 20231 min read<!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>
<!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>
Stack Using QueueA stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue...
Queue Using StackA queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue...
コメント