html tips

2021-06-20  本文已影响0人  想溜了的蜗牛

一些较实用的html 小技巧, 原文

<img src='image.jpg' loading='lazy' alt='Alternative Text'>     
<a href="mailto:{email}?subject={subject}&body={content}">
  Send us an email
</a>

<a href="tel:{phone}">
  Call us
</a>

<a href="sms:{phone}?body={content}">
  Send us a message
</a>           
<a href="https://markodenic.com/" target="_blank" rel="noopener">
    Marko's website
</a>           
<head>
   <base target="_blank">
</head>
<!-- This link will open in a new tab. -->
<div class="wrapper">
  This link will be opened in a new tab: &nbsp;
  <a href="https://freecodetools.org/">
    Free Code Tools
  </a>

  <p>
    Read more: <br><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base">
    MDN Documentation
    </a>
  </p>
</div>
<a href='path/to/file' download>
  Download
</a>     
<video poster="path/to/image">           
上一篇下一篇

猜你喜欢

热点阅读