Traffic Exchange
Welcome to the Traffic Exchange
Click the button below to visit another user's website and earn credits.
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #0056b3;
}
JavaScript (script.js)
document.getElementById('exchangeButton').addEventListener('click', function() {
// List of URLs for traffic exchange
const urls = [
'https://example1.com',
'https://example2.com',
'https://example3.com'
];
// Randomly select a URL from the list
const randomIndex = Math.floor(Math.random() * urls.length);
const selectedUrl = urls[randomIndex];
// Redirect to the selected URL
window.location.href = selectedUrl;
});
No comments:
Post a Comment