📧
Email Us

Privacy & General Inquiries:

privacy@OnlineFreeGameZone.online

We typically respond within 24 hours

📍
Visit Us

Our Location:

357/A Hardev Nagar

Barra, Kanpur, India

Open for business inquiries

🛠️
Technical Support

Need Help?

Game issues, bugs, or technical problems

Use the contact form below or email us

Fast response guaranteed!

🕒
Response Times

Email Response:

Monday - Friday: Within 24 hours

Weekends: Within 48 hours

We're committed to quick support!

Send us a Message

📤 Sending your message... Please wait

🗺️ Find Us on the Map

Located in Hardev Nagar, Barra, Kanpur - Easy to reach and visit!

⏰ When to Reach Us

We're available to help you with any questions or concerns!

Email Support: 24/7 Available
Response Time: Within 24 Hours
Weekend Support: 48 Hour Response
Emergency Issues: Priority Handling
// Element SDK Configuration async function onConfigChange(config) { // Update page title const pageTitle = document.getElementById('page-title'); if (pageTitle) { pageTitle.textContent = config.page_title || defaultConfig.page_title; } // Update page subtitle const pageSubtitle = document.getElementById('page-subtitle'); if (pageSubtitle) { pageSubtitle.textContent = config.page_subtitle || defaultConfig.page_subtitle; } // Update business name const businessName = document.getElementById('business-name'); if (businessName) { businessName.textContent = config.business_name || defaultConfig.business_name; } // Update contact email const contactEmail = document.getElementById('contact-email'); if (contactEmail) { contactEmail.textContent = config.contact_email || defaultConfig.contact_email; contactEmail.href = `mailto:${config.contact_email || defaultConfig.contact_email}`; } // Update address const addressLine1 = document.getElementById('address-line1'); if (addressLine1) { addressLine1.textContent = config.address_line1 || defaultConfig.address_line1; } const addressLine2 = document.getElementById('address-line2'); if (addressLine2) { addressLine2.textContent = config.address_line2 || defaultConfig.address_line2; } // Update form title const formTitle = document.getElementById('form-title'); if (formTitle) { formTitle.textContent = config.form_title || defaultConfig.form_title; } // Update submit button text const submitButtonText = document.getElementById('submit-button-text'); if (submitButtonText) { submitButtonText.textContent = config.submit_button_text || defaultConfig.submit_button_text; } } function mapToCapabilities(config) { return { recolorables: [], borderables: [], fontEditable: undefined, fontSizeable: undefined }; } function mapToEditPanelValues(config) { return new Map([ ["page_title", config.page_title || defaultConfig.page_title], ["page_subtitle", config.page_subtitle || defaultConfig.page_subtitle], ["business_name", config.business_name || defaultConfig.business_name], ["contact_email", config.contact_email || defaultConfig.contact_email], ["address_line1", config.address_line1 || defaultConfig.address_line1], ["address_line2", config.address_line2 || defaultConfig.address_line2], ["form_title", config.form_title || defaultConfig.form_title], ["submit_button_text", config.submit_button_text || defaultConfig.submit_button_text] ]); } // Initialize Element SDK if (window.elementSdk) { window.elementSdk.init({ defaultConfig, onConfigChange, mapToCapabilities, mapToEditPanelValues }); }