Hi, I have below html code used in various (100s odd) html pages.
<ftrprod>
<div class="ftrprod-text">FEATURED PRODUCTS</div>
</ftrprod>
<div class="marquee-section">
<marquee behavior="scroll" direction="right" scrollamount="10">
<a target="_blank" href="https://www.sample.com"><img src="images/IMG1.png" alt="L-Type Charging Cable"></a>
<a target="_blank" href="https://www.sample.com"><img src="images/IMG2.png" alt="Image 2"></a>
<a target="_blank" href="https://www.sample.com"><img src="images/IMG3.png" alt="Image 3"></a>
<a target="_blank" href="https://www.sample.com"><img src="images/IMG4.png" alt="Image 4"></a>
I want my html page to call this particular section dynamically from CSS files, so that if I need to change in future, I should be able to change it at single place and its impact should reflect in all html pages. Please suggest if this is possible?
<ftrprod>
<div class="ftrprod-text">FEATURED PRODUCTS</div>
</ftrprod>
<div class="marquee-section">
<marquee behavior="scroll" direction="right" scrollamount="10">
<a target="_blank" href="https://www.sample.com"><img src="images/IMG1.png" alt="L-Type Charging Cable"></a>
<a target="_blank" href="https://www.sample.com"><img src="images/IMG2.png" alt="Image 2"></a>
<a target="_blank" href="https://www.sample.com"><img src="images/IMG3.png" alt="Image 3"></a>
<a target="_blank" href="https://www.sample.com"><img src="images/IMG4.png" alt="Image 4"></a>
I want my html page to call this particular section dynamically from CSS files, so that if I need to change in future, I should be able to change it at single place and its impact should reflect in all html pages. Please suggest if this is possible?