Just copy this code bellow and paste in your webpage in html format. Then edit your text and save then publish.
<style type="text/css">
.container
{
position: relative;
}
.container,
.container .headertext {
padding: 7px;
background: black;
color: white;
bottom: 0px;
display: flex;
font-size: large;
font-weight: bold;
position: relative;
}
.container .headertext {
background: red;
position: absolute;
top: 0px;
left: 0px;
z-index: 10;
}
.container marquee {
line-height: unset;
}
.container marquee p {
margin: 0px;
}
</style>
<div class="container">
<div class="headertext">Title</div>
<div>
<marquee style="width:100%;color: white;" onmouseover="this.stop();" onmouseout="this.start();" direction="left" behavior="scroll" scrollamount="6">
Write Your text here
</marquee>
</div>
</div>
</div>