HTML5 20180918

  • 新建html文件
    • 右下角“纯文本”切换为“html”,输入“!”,按Tab键,模板自动生成。

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
  • <a>
    • href
  • <img>
    • src, alt, height, width
    • usemap
      • name (#)
  • <map>
    • name
  • <area>
    • href, alt, target
    • coords
      • shape (default, rect, circle, poly)
<img src="https://ww1.sinaimg.cn/mw1024/785731a4gw1et086nk68hj20km0uoakx.jpg" alt="" usemap="#bgmap">
    <map name="bgmap">
        <area shape="rect" coords="200,0,600,500" href="https://wx2.sinaimg.cn/mw690/785731a4gy1fnjusmm1tej20mz0whakh.jpg" target="_blank">
        <area shape="circle" coords="300,550,50" href="https://wx1.sinaimg.cn/mw690/785731a4gy1fh99gpajp4j20mz0whqcw.jpg" target="_blank">
    </map>
  • <abbr>
    • title
  • <base>
    • href, target
  • <article>
  • <address>
  • <aside>
  • <h1>-<h6>
  • <p>
  • <blockquote>

猜你喜欢

转载自www.cnblogs.com/xixicf/p/9671663.html