首页 > 代码库 > HTML 常用标签锦集

HTML 常用标签锦集

Html文档基本结构

<html><head>        <title>Document name goes here</title></head><body>        Visible text goes here</body></html>    

文本元素

<p>This is a paragraph</p><br /><hr><pre>This text is preformatted</pre><!--此标签中间的文字的格式以输入时为准,只用于古诗等的展示-->

特殊含义的文本元素

<!--块级引用--><blockquote>        Text quoted from some source.</blockquote><!--地址--><address>        Address 1<br />        Address 2<br />        City<br /></address>

 

逻辑样式元素

<em>This text is emphasized</em><strong>This text is strong</strong><code>This is some computer code</code><!--强调程度的排序是strong > em;code用于插入代码-->

实体样式元素 (用的比较少,一般使用css代替)

<b>This text is bold</b><i>This text is italic</i>


链接,锚,图片元素

<!--锚元素--><a href="http://www.example.com/">This is a Link</a><!--用于打开连接--><a href="http://www.example.com/ss.zip"></a><!--用于下载--><a href="mailto:webmaster@example.com">Send e-mail</a><!--用于发送邮件--><!--命名的锚--><a id="tips">Useful Tips Section</a><a href="#tips">Jump to the Useful Tips Section</a><!--跳转到id为tips的元素处--><!--图片元素--><img src="URL" alt="Alternate Text"> <!--如果图片不能显示,则显示alt的值-->

列表

<!--无序列表--><ul>    <li>First item</li>    <li>Next item</li></ul><!--有序列表--><ol>    <li>First item</li>    <li>Next item</li></ol><!--自定义列表--><dl>    <dt>First term</dt>    <dd>Definition</dd>    <dt>Next term</dt>    <dd>Definition</dd></dl>

表格

<table border="1">    <tr>        <th>someheader</th><!--th标签中内容默认居中-->        <th>someheader</th>    </tr>    <tr>        <td>sometext</td> <!--td标签中内容默认居左-->        <td>sometext</td>    </tr></table>    

表单

<form action="http://www.example.com/test.asp" method="post/get">        <input type="text" name="lastname" value="Nixon" size="30" maxlength="50">        <input type="password">        <input type="checkbox" checked="checked">        <input type="radio" checked="checked">        <input type="submit">        <input type="reset">        <input type="hidden">        <select>                <option>Apples</option>                <option selected>Bananas</option>                <option>Cherries</option>        </select>        <textarea name="Comment" rows="60" cols="20"></textarea></form>

实体

&lt;  : <
&gt;  : >
&#169;  : ©Other Elements


 

HTML 常用标签锦集