All Collections
FAQ
How to add a logo or banner image to Emails
How to add a logo or banner image to Emails
Updated over a week ago

Could you consider adding a banner at the top to make your emails appear more professional? Using HTML code in your email, you can embed a banner image so your email has the same feel as a web page. This can help instill reader confidence in your email and allow your offers to convert better. With a higher-converting email design, you will generate more interest in your webinar than with a plain-text email. The recommended width of the banner image is 960 pixels.

All emails have an HTML window. See the image below for how to access it:

Once you click Change mode, you can place your email logo or banner on top.

Click the Change mode icon again to preview your logo or banner, and remember to click Save.

HTML Code

The <img> tag defines an image in an HTML page and has two required attributes: src and alt.

Images are not technically inserted into an HTML page but are linked to HTML pages. The <img> tag creates a holding space for the referenced image.

1. To add an image (logo or banner) to your email header, use the following lines:

<p>
<img src="https://www.source.com/images/company_logo.png"
alt="Company logo">
</p>

2. To add an image (logo or banner) that is clickable and redirects the users to a new tab, use the following lines:

<a href="https://www.company.com" 
target="_blank"><img border="0" alt=" Company_Logo"
src="https:\\<source>\company_logo.png"
width="xxx" height="yyy"></a>

Need more information? Check out this link to see more about the HTML tag.

w3schools: HTML img Tag - Not affiliated with webinar.net -


For further assistance, contact us through chat or send us an email at support@webinar.net.

Did this answer your question?