Menu

Institutional Investor

Log in

Financial Advisor Document Center

Log in

Financial Advisor Client Account

Log in

Individual Investor

Log in


Need assistance logging in?

Institutional Investors
View Contact Us details on the log in page.

Financial Advisors or Individual Investors
Email support@brittanniaholdings.com

Contact Us

Get in touch with Brittannia Holdings. Our team is here to assist with inquiries about our investment services, business opportunities, and partnerships.

Headquarters

Brittannia Holdings
Willoughby Street
London WC1A 1JD
United Kingdom


Phone: +44 7480 071376
Email: info@brittanniaholdings.com

Office Hours:
Monday – Friday: 9:00 AM – 6:00 PM (GMT)

Send us a Message

Complete the form below and a member of our team will respond within 24 business hours.

Our Global Presence

Connect with us at any of our international offices around the world.

πŸ‡ΊπŸ‡Έ United States
Suite 1870, Grand Central Business Plaza
450 Madison Avenue, New York, NY 10022, USA
πŸ‡ΆπŸ‡¦ Qatar
Office 1407, West Bay Business Tower
Diplomatic Street, West Bay, Doha, Qatar
πŸ“ž +974 4455 7812
πŸ‡ΈπŸ‡¦ Saudi Arabia
Office 2508, Kingdom Business Centre
King Fahd Road, Al Olaya District, Riyadh 12212, Saudi Arabia
πŸ“ž +966 11 520 7834
πŸ‡ΈπŸ‡¬ Singapore
Level 21, Marina Bay Financial Centre Tower
12 Marina Boulevard, Singapore 018982
πŸ“ž +65 6587 4231
πŸ‡¦πŸ‡Ί Australia
Suite 1905, Harbour Business Centre
201 Sussex Street, Sydney NSW 2000, Australia
πŸ“ž +61 2 8456 3718

Important: Brittannia Holdings does not solicit investments via unsolicited emails or social media messages. Always verify communications through our official channels.

document.getElementById('contactForm').addEventListener('submit', function(e) { e.preventDefault(); const form = this; const submitBtn = document.getElementById('submitBtn'); const loadingBtn = document.getElementById('loadingBtn'); const messageDiv = document.getElementById('formMessage'); // Clear previous messages messageDiv.style.display = 'none'; messageDiv.className = ''; // Show loading state submitBtn.style.display = 'none'; loadingBtn.style.display = 'inline-block'; // Get form data const formData = new FormData(form); fetch(form.action, { method: 'POST', body: formData, headers: { 'X-Requested-With': 'XMLHttpRequest' } }) .then(response => response.json()) .then(data => { // Hide loading state submitBtn.style.display = 'inline-block'; loadingBtn.style.display = 'none'; if (data.success) { // Success messageDiv.style.display = 'block'; messageDiv.className = 'alert alert-success'; messageDiv.textContent = data.message; form.reset(); } else { // Show errors messageDiv.style.display = 'block'; messageDiv.className = 'alert alert-danger'; let errorText = 'Please fix the following errors:\n'; for (let field in data.errors) { errorText += 'β€’ ' + data.errors[field] + '\n'; // Highlight field const input = document.querySelector(`[name="${field}"]`); if (input) { input.classList.add('is-invalid'); } } messageDiv.textContent = errorText; } }) .catch(error => { submitBtn.style.display = 'inline-block'; loadingBtn.style.display = 'none'; messageDiv.style.display = 'block'; messageDiv.className = 'alert alert-danger'; messageDiv.textContent = 'An error occurred. Please try again.'; console.error('Error:', error); }); }); // Remove error class on input document.querySelectorAll('#contactForm input, #contactForm select, #contactForm textarea').forEach(element => { element.addEventListener('input', function() { this.classList.remove('is-invalid'); const messageDiv = document.getElementById('formMessage'); messageDiv.style.display = 'none'; }); });