<script>
// List of direct image URLs from your Flickr
const images = [
'https://flic.kr/p/2pRF455',
'https://flic.kr/p/2pRzka2',
'https://flic.kr/p/2pRFHPq',
// Add more Flickr image URLs here
];
// Get a random image
const randomImage = images[Math.floor(Math.random() * images.length)];
// Display it (adjust tag as needed, e.g., <img src=...>)
document.write('<img src="' + randomImage + '" style="width:100%;" alt="Random Flickr Image">');
</script>