2015-04-02 165 views
0

我一直在爲一個客戶做一個非常簡單的電子郵件簽名,並且對於我的生活無法弄清楚爲什麼最終的血腥圖像不會顯示出來。我檢查了幾十次。它位於網站的/ images /文件夾內,隨時可以使用。但它不會出現!爲什麼我的圖像不能在電子郵件簽名中顯示?

我做了一個html文件進入Outlook簽名位。 img src是http://transitions-london.co.uk/images/Transsignature.jpg/。但它不會顯示出來。真氣!任何想法在這一點上都會很快樂。謝謝!

<html> 
<head> </head> 
<body> 

<table border="0" style="margin-top:40px;margin-left:20px;margin-bottom:30px;width:95%;"> 
<tbody> 
<tr> 
<td width="400"> 
<h2>Sheila Heard</h2> 
<h3>Managing Director</br> 
<a href=「http://transitions-london.co.uk」>Transitions London CIC</a>  </br> 

電話020 86424431/07866 25742 社會企業C.I.C.無7609324

<i>Quality, impartial careers guidance and jobsearch services. Also social enterprise pathways for corporates to support and hire experienced professionals with refugee backgrounds & to deliver on corporate diversity and CSR good practice.</i> 

    <i>Candidates are mostly engineers, finance & administration and international development professionals. Refugees have full permission to work.  Contact us for responsible services.</i> 

找到我們在LinkedinTwitter (@TransitionsUK)Facebook

<img src=「http://transitions-london.co.uk/images/Transsignature.jpg」>  </img> 

</td> 
</tr> 
</tbody> 
</table> 


    </body> 
    </html> 

謝謝!

回答

1

你必須在圖像URL非標準報價。使用這個:

<img src="http://transitions-london.co.uk/images/Transsignature.jpg" alt="" /> 
+0

我以前試過。但由於某種原因,它不起作用。現在我添加了「alt =」「'它似乎在工作!很奇怪。非常感謝! – 2015-04-03 09:13:25

0

該圖像不可用。即使我無法在網絡瀏覽器中打開它。

也嘗試使用單個元素:

<img src=「http://transitions-london.co.uk/images/Transsignature.jpg」/> 
+0

絕對有。 – 2015-04-03 09:13:44

相關問題