grmtech

Digital Marketing Servicess

Grow Your Client Base With Data-Driven and   
Strategies

GET MY FREE PROPOSAL 

Let’s Grow Digitally

With Our Trusted Digital Marketing Service

Read More

Great Media Technologies Pvt Ltd (Grmtech) is a Kolkata-based IT and ITeS company founded in May 2003.

Grmtech develops and maintains its projects in the USA with its associate companies. These projects are from the finance and legal industry in the USA. Grmtech has 2 offices in Kolkata, over 15 medical clinics, and 2 legal offices in California.

We work with Stanford Hospital mental health doctors and psychologists across the USA.

Grmtech does all back office work for Savantcare doctors, like managing patients' appointments, providing doctors assistance on the phone, chat, and email. We also work for OVLG to provide the best legal services in the US. We have a qualified FC team and a CRA team who offer free budget counseling sessions to clients and negotiate with their creditors for settlement.

Digital Marketing Services

 

Web Development
  • Website development
  • UI/UX design
  • Website maintenance

 

Social Media Marketing
  • Content sharing and engagement. Influencer marketing.
  • Social listening and reputation management.
  • Social media contests and giveaways.

 

Pay per Click Service
  • Google Ads.
  • Bing Ads.
  • Display advertising.
  • Social media advertising (e.g., Facebook Ads).

 

Web Analytics
  • Analyzing website and campaign performance
  • A/B testing and conversion rate optimization
  • User behavior analysis

 

Mobile Marketing
  • Mobile-optimized websites and apps
  • SMS marketing
  • In-app advertising

 

Marketing Automation:
  • Email automation
  • Lead nurturing
  • Workflow and campaign automation
Do you like to wait for a website to load? No and neither do your visitor like it. Here are some tips that will help you make your website faster Use Divs instead of Tables for your website layout
  • If you have a table based layout, then nothing will appear in the browser until the entire table is downloaded and rendered. An this may be very frustrating for the users.
  • Generally browsers read the through the tables twice. Once for the table structure and another time to fetch its content.
  • Table layout stored in each HTML page has to be downloaded each time a fresh page loads, but if you have a div based layout. You can store all the designing code in an external stylesheet. Which the browser can put in its cache.
  • CSS probably requires less code that complex table structure.
Write smart HTML code The un-smart way is: <p class="para">This is a paragraph</p> <p class="para">This is a paragraph</p> <p class="para">This is a paragraph</p> But smart will write it as: <div class="para"> <p>This is a paragraph</p> <p>This is a paragraph</p> <p>This is a paragraph</p> </div> The point is there is no sense in repeating the same style class individually for each and every paragraph. This may not look that significant. But believe me by doing this you can easily wipe off 15% - 20% of unnecessary code. Use shorthand CSS properties Use CSS shorthand properties like Use margin: 10px 3px 15px 5px (top, right, bottom, left) Instead of margin-top: 10px margin-right: 3px margin-bottom: 15px margin-left: 5px Remove unnecessary white space Many may not know that every single white consumes one bite. This may not sound like a much of a concern, but it all adds up. You may be able to save 10% of the total size. You can do some server side scripting to wipe off all the white space from your html documents. Put JS and CSS in external files Always try and put JS and CSS into an external file. Any external file is just called once by the browser and they cache it. Next even if the user navigates to another page, browser will fetch it from its own cache, making it very fast. To place CSS in an external document use: <link type="text/css" rel="stylesheet" href="stylesheet.css" /> To place JavaScript in an external document use: <script language="JavaScript" src="script.js" type="text/javascript"></script>