Sunday, March 19, 2023

#greeting-button { font-size: 1.5em; padding: 10px; border-radius: 10px; background-color: #ffa500; color: #fff; border: none; cursor: pointer; } #greeting-message { font-size: 2em; margin-top: 10px; } const greetingButton = document.getElementById('greeting-button'); const greetingMessage = document.getElementById('greeting-message'); const messages = [ "Hello there!", "Howdy!", "Greetings!", "Hey, how's it going?", "What's up?", "Nice to see you!", "How have you been?", "Long time no see!", "Good to catch up with you!", "What brings you here today?" ]; greetingButton.addEventListener('click', function() { const randomIndex = Math.floor(Math.random() * messages.length); const message = messages[randomIndex]; greetingMessage.textContent = message; });

No comments:

Post a Comment

Video Calling Web App Video Calling Web App Start Call End Call #video-container { display: f...