-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
4 lines (4 loc) · 1.37 KB
/
main.js
1
2
3
4
const mybanners = ['<a href="https://bit.ly/3r45z72"><img src="https://www.bookkeepers.org.uk/resources/news/business/quickbooks-announces-new-features-/image/219521/ACCA-Spring-Release-720x90%20(2).gif.gif" width="720" height="90" alt="" title="" border="0"></a>', '<a href="https://bit.ly/3r45z72"><img src="https://i.ibb.co/WVcCmjc/quickbooks-banner.png" alt="quickbooks-banner" width="720" height="90" border="0"></a>', '<a href="https://bit.ly/3r45z72"><img src="https://i.ibb.co/PZmyR1s/Intuit-Quick-Books-Payroll-Affiliate-Program-1.png" width="720" height="90" border="0"></a>', '<a href="https://bit.ly/3r89P5v"><img src="https://keysprog.ru/wp-content/uploads/2022/03/og-key.png" width="720" height="90" border="0"></a>', '<a href="https://bit.ly/3r89P5v"><img src="https://i.ibb.co/sCtN97p/MB-v31.gif" alt="MB-v31" border="0"></a>', '<a href="https://7vcc.com/?sxp" target="_blank"><img src="https://theseoexperts.co.uk/wp-content/uploads/2021/12/536538761640017892.png" width="720" height="90" border="0"></a>', '<a href="https://7vcc.com/?sxp" target="_blank"><img src="https://theseoexperts.co.uk/wp-content/uploads/2021/12/2196742423400817116.png" width="720" height="90" border="0"></a>'];
const randomIndex = Math.floor(Math.random() * mybanners.length);
const bannerContainer = document.getElementById('banner-container');
bannerContainer.innerHTML = mybanners[randomIndex];