链接

https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_is_a_URL#How_to_use_URLs

<a 
title="The Mozilla homepage" 
href="https://www.mozilla.org/" 
target="_blank"
download="firefox-latest-64bit-installer.exe"
>火狐官网</a>

title只有鼠标悬浮的时候显示,download是文件保存时的默认名称。

块链接:

<a href="https://www.mozilla.org/en-US/">
  <img src="mozilla-image.png" alt="mozilla logo that links to the mozilla homepage">
</a>

Last updated

Was this helpful?