zl程序教程

您现在的位置是:首页 >  前端

当前栏目

HTML5中的重要元素

html5 元素 重要
2023-09-27 14:27:30 时间
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>一、HTML5中的重要元素</title>
<script type="text/javascript">
	function click(){
		alert('图片被点击');
	}
  </script>
------------------------------------------------
<a href="javascript:click()">
	<img src="Chrome.png">
</a>

</head>

<body>

    <section draggable="true">
        <h1>王威</h1>
        <p>性别:男 
           邮箱:wwang@gemptc.com
        </p>
    </section>
    <hr><hr>
  
	<nav draggable="true">
	<a href="index.html">首页</a>
	<a href="book.html">图书</a>
	<a href="bbs.html">论坛</a>
    </nav>
    <hr><hr>
  
    <hgroup>
       <figcaption>标题组</figcaption>
       <h1>标题1</h1>
       <h2>标题2</h2>
    </hgroup>
    <hr><hr>
  
	<address title="作者联系方式">
	Written by www.blues.com<br />
	<a href="mailto:wwang@gemptc.com">
		Email me
	</a><br />
    </address>
    <hr><hr>
    
    <ul>
        <li>数码</li>
        <li>图书
            <ul>
                <li>程序设计</li>
                <li>经典文学</li>
            </ul>
        </li>
        <li>百货</li>
    </ul>
    <hr><hr>
    
    <ol reversed="true">
        <li>Coffee</li>
        <li>Tea</li>
    </ol>
    <ol start="6">
        <li>Coffee</li>
        <li>Tea</li>
    </ol>
	<hr><hr>
    
    <dl>
	  <dt>Coffee</dt>
	  <dd>Black hot drink</dd>
	  <dt>Milk</dt>
	  <dd>White cold drink</dd>
	</dl>
    <hr><hr>
    
    <p>Do not forget to buy <mark>milk</mark> today.</p>
    <hr><hr>
    
    <em>Emphasized text</em></br>
    <strong>Strong text</strong></br>
    <dfn>Definition term</dfn></br>
    <code>Computer code text</code></br>
    <samp>SampleComputerCode</samp></br>
    <kbd>Keyboard text</kbd></br>
    <var>Variable</var></br>
    <cite>Citation</cite></br>
	<hr><hr>
    
    <iframe src="二、HTML5中常用的交互元素.html" sandbox="allow-forms">

  
</body>
</html>