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!

Help with images in html

ramanmonu

New member
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?
 
Back
Top