What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Adding url link to html marquee

elifaz

New member
Hello all!

I'm new to coding and trying to figure out how to add a link to my marquee. I tried but for some reason it overwrites the style when I do this. I would also like for there to be no colour change or underline animation. Any suggestions?

<!DOCTYPE html>
<html>
<head>
<title>Marquee</title>
<style>
.Marquee {
color: #da6fe2;
background-color: transparent;
font-family: work sans;
font-size: 34px;
line-height: 50px;
padding: 0px;
font-weight: bold;
}
</style>
</head>
<body>
<marquee class="Marquee" direction="right" scrollamount="4" behavior="scroll">HELLO &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HELLO &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HELLO &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HELLO &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HELLO</marquee>
</body>
</html>
 
Back
Top