Contact US

Need to get in touch with us?

Our contact us page is here to help. Simply fill out the form provided and one of our team members will be in touch with you shortly.

Whether you have a question, concern, or just want to say hello, we’d love to hear from you. Our contact form is the quickest and easiest way to reach us, and we’ll do our best to respond as soon as possible.

document.getElementById('keywordResearchForm').addEventListener('submit', (e) => { e.preventDefault(); const keyword = document.getElementById('keyword').value; getKeywordResults(keyword); }); async function getKeywordResults(keyword) { const apiURL = `https://suggestqueries.google.com/complete/search?client=firefox&q=${encodeURIComponent(keyword)}`; try { const response = await fetch(apiURL); const data = await response.json(); displayKeywordResults(data[1]); } catch (error) { console.error('Error fetching keyword results:', error); } } function displayKeywordResults(data) { const resultsDiv = document.getElementById('keywordResults'); resultsDiv.innerHTML = ''; data.forEach((result) => { const resultElement = document.createElement('div'); resultElement.className = 'result'; resultElement.innerHTML = `

${result}

`; resultsDiv.appendChild(resultElement); }); }
Scroll to Top