Link marquee to every page in an html website?

SKH

New member
You can use a scripting language to pull the text for the marquee from a file. or you can use a little html trick:

have a page called marquee.html and make it a blank html page only containing your marquee. and call it inside of an iframe in all of the pages you want the marquee to be displayed on like this:

<iframe src="marquee.html" width="100" height="20"
frameborder="0"
allowtransparency="true"
scrolling="no"
></iframe>
 
is there a way to link the words put into a marquee to all of my web pages? i have a marquee on every page of my website and i want to be able to just open one file and change the words and have all of the marquees be changed... i don't want to have to open up every single one unless i absolutely have too.... any help would be appreciated

* i'm using notepad++ to write the website
 
Back
Top