本篇文章给大家带来的内容是关于html5中的重要元素实现的代码实例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
<!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>
相关推荐:
以上是html5中的重要元素实现的代码实例的详细内容。更多信息请关注PHP中文网其他相关文章!