How to add css in zoho mail

Zoho Mail is a popular email service that allows you to customize the look and feel of your emails using CSS. Here are the steps to add CSS to your Zoho Mail emails:

Method 1: Using the Zoho Mail Editor

  1. Compose a new email or open an existing one in the Zoho Mail editor.
  2. Click on the "Format" tab in the editor toolbar.
  3. Select "HTML" from the dropdown menu.
  4. In the HTML editor, click on the "Source" button to view the HTML code.
  5. Add your CSS code to the <head> section of the HTML code, wrapped in <style> tags. For example:
    <head>
    <style>
     /* Your CSS code here */
    </style>
    </head>
  6. Save the changes to the email.

Method 2: Using an external stylesheet

  1. Create a new file with a .css extension (e.g., style.css) and add your CSS code to it.
  2. Upload the CSS file to your website or a cloud storage service like Google Drive or Dropbox.
  3. In your Zoho Mail email, add a link to the external stylesheet using the link tag in the <head> section of the HTML code. For example:
    <head>
    <link rel="stylesheet" type="text/css" href="https://example.com/style.css">
    </head>

    Replace https://example.com/style.css with the URL of your uploaded CSS file.

Tips and limitations

By following these steps, you should be able to add CSS to your Zoho Mail emails and customize their appearance.