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 HELLO HELLO HELLO HELLO</marquee>
</body>
</html>
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 HELLO HELLO HELLO HELLO</marquee>
</body>
</html>