Save and win millions
Your Africa Trade Partner
We understand the complexities of the global market. Our products and services have been designed to ease your banking needs.
LEARN MORE
Serving Customers Across the Middle East
The birth of UBA Dubai is in line with our vision. We are global in outlook and competence, African br heart and knowledge, and a bridge to the world economy.
LEARN MORE
A Gateway Between African and North America
As the only sub-saharan African bank with an operational banking licence in the U.S., UBA America provides critical services to those oin and out of Africa.
LEARN MORE
Hi! My Name is Leo, Your Ultimate Banking Buddy
Check out all the cool ways we can be friends; Google Business Chats, Apple Messages, Facebook, WhatsApp, Instagram. Just say Hi and let's get talking.
LEARN MORE
Excellent Service...Delivered
Now fully positioned as a pan-African bank, UBA Group is firmly at the forefront of driving the renaissance of the African economy.
LEARN MORE
Dicover the power Of relationship management in building a successful business
From tailored financial solutions to unwavering support, we're here every step of the way
LEARN MORE
Recognition for Excellence
UBA wins Bank of the Year Africa 2023 and other prestigious awards.
LEARN MORE
Convenience at Your Fingertips
The UBA Mobile App is the perfect blend of control, support, flexibility and fun.
Previous slide
Next slide
jQuery(function() { // Set the date we're counting down to var countDownDate = new Date("Jul 15, 2024 00:00:00").getTime(); var countdown1 = document.getElementById("num1"); // get tag element var countdown2 = document.getElementById("num2"); // get tag element var countdown3 = document.getElementById("num3"); // get tag element var countdown4 = document.getElementById("num4"); // get tag element // Update the count down every 1 second var x = setInterval(function() { // Get today's date and time var now = new Date().getTime(); // Find the distance between now and the countdown date var distance = countDownDate - now; // Time calculations for days, hours, minutes, and seconds var days = Math.floor(distance / (1000 * 60 * 60 * 24)); var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000 * 60)) / 1000); //zero if number <10 function pad(n){ return (n < 10 ? "0" : "") + n; } // format countdown string + set tag value countdown1.innerText = pad(days); countdown2.innerText = pad(hours); countdown3.innerText = pad(minutes); countdown4.innerText = pad(seconds); // If the count down is over, write some text if (distance < 0) { clearInterval(x); countdown1.innerText = "O"; countdown2.innerText = "V"; countdown3.innerText = "E"; countdown4.innerText = "R"; } }, 1000); });

Days

Hours

Minutes

Seconds

Countdown Timer .countdown { font-size: 50px; text-align: center; margin-top: 20px; }
// Set the date we're counting down to (July 15, 2024 at 00:00:00 local time) const countdownDate = new Date("July 15, 2024 00:00:00").getTime(); // Update the countdown every 1 second const countdownTimer = setInterval(function() { // Get the current date and time const now = new Date().getTime(); // Find the distance between now and the countdown date const distance = countdownDate - now; // Calculations for days, hours, minutes, and seconds const days = Math.floor(distance / (1000 * 60 * 60 * 24)); const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((distance % (1000 * 60)) / 1000); // Display the countdown timer in the element with id="countdown" document.getElementById("countdown").innerHTML = `${days}d ${hours}h ${minutes}m ${seconds}s`; // If the countdown is over, display some text if (distance < 0) { clearInterval(countdownTimer); document.getElementById("countdown").innerHTML = "EXPIRED"; } }, 1000); // Update every 1 second
#countdown { font-size: 36px; font-weight: bold; color: white; text-align: center; margin: 20px 0; }

function updateCountdown() { let startTime = new Date("2024-07-15T00:00:00"); const currentTime = new Date(); let diffTime = startTime - currentTime; let totalSeconds = diffTime / 1000; while (totalSeconds <= 0) { startTime.setDate(startTime.getDate() + 7); diffTime = startTime - currentTime; totalSeconds = diffTime / 1000; } const days = Math.floor(totalSeconds / (24 * 60 * 60)); const hours = Math.floor((totalSeconds % (24 * 60 * 60)) / (60 * 60)); const minutes = Math.floor((totalSeconds % (60 * 60)) / 60); const seconds = Math.floor(totalSeconds % 60); document.getElementById("countdown").innerHTML = `${days}d ${hours}h ${minutes}m ${seconds}s`; } setInterval(updateCountdown, 1000);

Days

Hours

Minutes

Seconds

Days
Hours
Minutes
Seconds
Over