-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathad-replacement.html
More file actions
23 lines (22 loc) · 909 Bytes
/
ad-replacement.html
File metadata and controls
23 lines (22 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<body style="background-position: center; background-size: cover"></body>
<script>
let images = [
'https://i.ibb.co/ZNznSg8/kitten4.jpg',
'https://i.ibb.co/W6Dmw7X/kitten3.jpg',
'https://i.ibb.co/zQ8GQsc/kitten2.jpg',
'https://i.ibb.co/dQkS15f/kitten1.jpg',
'https://i.ibb.co/MZspDxQ/kitten5.jpg',
'https://i.ibb.co/1ZxnLdS/cat.jpg',
'https://i.ibb.co/bKMTyzH/kitty.jpg',
'https://i.ibb.co/qmt57Ny/IMG-3424.jpg'
];
document.body.style.backgroundImage = 'url("' + images[Math.floor(Math.random() * images.length)] + '")';
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-50810949-12"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-50810949-12');
</script>