📄 html_lists.asp@output=print
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>HTML Lists</title>
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Keywords" content="xml,tutorial,html,dhtml,css,xsl,xhtml,javascript,asp,ado,vbscript,dom,sql,colors,soap,php,authoring,programming,training,learning,beginner's guide,primer,lessons,school,howto,reference,examples,samples,source code,tags,demos,tips,links,FAQ,tag list,forms,frames,color table,w3c,cascading style sheets,active server pages,dynamic html,internet,database,development,Web building,Webmaster,html guide" />
<meta name="Description" content="Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building." />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "../../https@ssl./default.htm" : "../../www./default.htm");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3855518-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</head>
<body>
<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>
<h1>HTML Lists</h1>
<a href="html_tables.asp"><img border="0" src="../images/btn_previous.gif" width="100" height="20" alt="Previous" /></a>
<a href="html_forms.asp"><img border="0" src="../images/btn_next.gif" width="100" height="20" alt="Next" /></a>
<hr />
<p class="intro">HTML supports ordered, unordered and definition lists.</p>
<hr />
<h2>Examples</h2>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_lists4">An unordered list</a><br />
This example demonstrates an unordered list.</p>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_lists">An ordered list</a><br />
This example demonstrates an ordered list.</p>
<p>(You can find more examples at the bottom of this page)</p>
<hr />
<h2>Unordered Lists</h2>
<p>An unordered list is a list of items. The list items are marked with bullets (typically
small black circles).</p>
<p>An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.</p>
<table width="100%" class="ex" cellspacing="0" border="1">
<tr>
<td>
<pre><ul>
<li>Coffee</li>
<li>Milk</li>
</ul></pre>
</td>
</tr>
</table>
<p>Here is how it looks in a browser:</p>
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
<p>Inside a list item you can put paragraphs, line breaks, images, links, other
lists, etc.</p>
<hr />
<h2>Ordered Lists</h2>
<p>An ordered list is also a list of items. The list items are marked with
numbers.</p>
<p>An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.</p>
<table width="100%" class="ex" cellspacing="0" border="1">
<tr>
<td>
<pre><ol>
<li>Coffee</li>
<li>Milk</li>
</ol></pre>
</td>
</tr>
</table>
<p>Here is how it looks in a browser:</p>
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
<p>Inside a list item you can put paragraphs, line breaks,
images, links, other lists, etc.</p>
<hr />
<h2>Definition Lists</h2>
<p>A definition list is <b>not</b> a list of items. This is a list of terms and
explanation of the terms.</p>
<p>A definition list starts with the <dl> tag. Each definition-list term starts with the <dt> tag. Each
definition-list definition starts with the <dd> tag.</p>
<table width="100%" class="ex" cellspacing="0" border="1">
<tr>
<td>
<pre><dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl></pre>
</td>
</tr>
</table>
<p>Here is how it looks in a browser:</p>
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
<p>Inside a definition-list definition (the <dd> tag) you can put paragraphs, line breaks,
images, links, other lists, etc.</p>
<hr />
<h2>More Examples</h2>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_lists_ordered">Different types of ordered
lists</a><br />
This example demonstrates different types of ordered lists.</p>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_lists_unordered">Different types of
unordered Lists</a><br />
This example demonstrates different types of unordered lists.</p>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_lists2">Nested list</a><br />
This example demonstrates how you can nest lists.</p>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_nestedlists2">Nested list
2</a><br />
This example demonstrates a more complicated nested list.</p>
<p><a target="_blank" href="tryit.asp@filename=tryhtml_lists3">Definition list</a><br />
This example demonstrates a definition list.</p>
<hr />
<h2>List Tags</h2>
<table class="ex" cellspacing="0" border="1" width="100%">
<tr>
<th align="left">Tag</th>
<th align="left">Description</th>
</tr>
<tr>
<td><a href="../tags/tag_ol.asp"><ol></a></td>
<td>Defines an ordered list</td>
</tr>
<tr>
<td><a href="../tags/tag_ul.asp"><ul></a></td>
<td>Defines an unordered list</td>
</tr>
<tr>
<td><a href="../tags/tag_li.asp"><li></a></td>
<td>Defines a list item</td>
</tr>
<tr>
<td><a href="../tags/tag_dl.asp"><dl></a></td>
<td>Defines a definition list</td>
</tr>
<tr>
<td><a href="../tags/tag_dt.asp"><dt></a></td>
<td>Defines a definition term</td>
</tr>
<tr>
<td><a href="../tags/tag_dd.asp"><dd></a></td>
<td>Defines a definition description</td>
</tr>
<tr>
<td><a href="../tags/tag_dir.asp"><dir></a></td>
<td class="deprecated">Deprecated. Use <ul> instead</td>
</tr>
<tr>
<td><a href="../tags/tag_menu.asp"><menu></a></td>
<td class="deprecated">Deprecated. Use <ul> instead</td>
</tr>
</table>
<br />
<hr />
<a href="html_tables.asp"><img border="0" src="../images/btn_previous.gif" width="100" height="20" alt="Previous" /></a>
<a href="html_forms.asp"><img border="0" src="../images/btn_next.gif" width="100" height="20" alt="Next" /></a>
<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -