-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrandom_image2.html
More file actions
47 lines (42 loc) · 2.2 KB
/
Copy pathrandom_image2.html
File metadata and controls
47 lines (42 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>QUE.COM - Random Image</title>
</head>
<body>
<a href="https://que.com" target="_blank"><img id="random-image" src="" alt="QUE.com - Random Image"></a>
<script>
const imageList = [
"https://que.com/wp-content/uploads/2024/07/image-18.png",
"https://que.com/wp-content/uploads/2024/07/Que.com-business-future.png",
"https://que.com/wp-content/uploads/2024/07/Que.com-Robot.png",
"https://que.com/wp-content/uploads/2024/07/Que.com-Must-read-books.png",
"https://que.com/wp-content/uploads/2024/07/Yehey.com-breaking-news.png",
"https://que.com/wp-content/uploads/2024/07/IndustryStandard.com-we-assist-you-to-start.png",
"https://que.com/wp-content/uploads/2024/07/QUE.com-Space.png",
"https://que.com/wp-content/uploads/2024/07/QUE.com-Future-Trends.png",
"https://que.com/wp-content/uploads/2024/07/QUE.com-ComputerVision-202407010449.png",
"https://que.com/wp-content/uploads/2024/06/IndustryStandard.com-marketing-v1.png",
"https://que.com/wp-content/uploads/2024/06/hardworking.com_.png",
"https://que.com/wp-content/uploads/2024/04/Que.com-Marketing-Internet-Billboard.png",
"https://que.com/wp-content/uploads/2024/02/Que.com-Crypto-News.png",
"https://que.com/wp-content/uploads/2024/07/QUE.com-Innovation-for-the-Future.png",
"https://que.com/wp-content/uploads/2024/07/Yehey.com-Tax-Advisor.png",
"https://que.com/wp-content/uploads/2024/07/QUE.com-AI-Business-and-the-Environment.png",
"https://que.com/wp-content/uploads/2024/07/Que.com-Tech-talk.png",
"https://que.com/wp-content/uploads/2024/07/Que.com-Unknown-the-future-of-AI.png",
"https://que.com/wp-content/uploads/2024/07/Que.com-Artificial-Intelligence-shadow.png",
"https://que.com/wp-content/uploads/2024/07/Yehey.com-Kikay-Magazine.png"
];
function showRandomImage() {
const randomIndex = Math.floor(Math.random() * imageList.length);
const randomImage = imageList[randomIndex];
const imageElement = document.getElementById("random-image");
imageElement.src = randomImage;
}
showRandomImage();
</script>
<br \>
Source: <a href="https://que.com" target="_blank">QUE.COM</a>
</body>
</html>