Html 实用技巧

1) 添加一张图片,但是不显示出来

<img border="0" src="https://www.somesite.com/some_image.png" style="display:none;" />

2) 把图片嵌入到表格中

<center>
<table>
<tr>
<td><img src="01.png"></td>
<td><img src="02.png"></td>
<td><img src="03.png"></td>
<td><img src="04.png"></td>
<td><img src="05.png"></td>
</tr>
</table>
</center>
3) 在新窗口中打开链接
<a href="https://www.w3schools.com" target="_blank">

原文地址:https://www.cnblogs.com/open-coder/p/13218035.html