Start Scaling
Book Brand Consultation
Let's map out a custom digital and physical branding strategy to position your business as a category leader.
Connect Direct
Have questions about pricing, material prints, or dynamic shoots? Speak with Nitin K directly or request a studio consultation in Bangalore.
WhatsApp Chat
Email Inquiry
Instagram Handle
Studio Location
No 5, Main Rd, Hesarghatta Rd, above SLV motors, Bengaluru, Karnataka 560090
Nitz's Media is part of the nitzs.co growth network.
How to configure this Form with Google Sheets
To feed all lead form submissions directly into your Google Sheets, perform these steps:
- Create a new Google Sheet named "Nitz's Media Leads".
- In Google Sheets, go to Extensions > Apps Script.
- Delete any code in the editor and paste the following snippet:
function doPost(e) { try { var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); var data = JSON.parse(e.postData.contents); // Add Headers if Sheet is empty if (sheet.getLastRow() === 0) { sheet.appendRow(["Timestamp", "Name", "Business Name", "Industry", "Instagram", "Challenges", "Budget", "Services"]); } sheet.appendRow([ new Date(), data.name, data.businessName, data.industry, data.instagram, data.challenges, data.budget, data.services.join(", ") ]); return ContentService.createTextOutput(JSON.stringify({"result": "success"})) .setMimeType(ContentService.MimeType.JSON); } catch (error) { return ContentService.createTextOutput(JSON.stringify({"result": "error", "error": error.toString()})) .setMimeType(ContentService.MimeType.JSON); } } - Click Deploy > New Deployment. Choose Web App as deployment type.
- Under Execute as, choose Me. Under Who has access, select Anyone.
- Click Deploy, approve the permissions, and copy the Web App URL.
- Open this file (contact/index.html) and replace
PLACEHOLDER_URLinside the form tag with your deployed URL.
Once deployed, every request triggers instant logging in your spreadsheet without database setup.