⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html_lists.asp@output=print

📁 W3Schools tutorial..web designing
💻 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 &lt;ul&gt; tag. Each list item starts with the &lt;li&gt; tag.</p>

<table width="100%" class="ex" cellspacing="0" border="1">
    <tr>
      <td>
        <pre>&lt;ul&gt;
&lt;li&gt;Coffee&lt;/li&gt;
&lt;li&gt;Milk&lt;/li&gt;
&lt;/ul&gt;</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 &lt;ol&gt; tag. Each list item starts with the &lt;li&gt; tag.</p>
<table width="100%" class="ex" cellspacing="0" border="1">
    <tr>
      <td>
        <pre>&lt;ol&gt;
&lt;li&gt;Coffee&lt;/li&gt;
&lt;li&gt;Milk&lt;/li&gt;
&lt;/ol&gt;</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 &lt;dl&gt; tag. Each definition-list term starts with the &lt;dt&gt; tag. Each
definition-list definition starts with the &lt;dd&gt; tag.</p>
<table width="100%" class="ex" cellspacing="0" border="1">
    <tr>
      <td>
        <pre>&lt;dl&gt;
&lt;dt&gt;Coffee&lt;/dt&gt;
&lt;dd&gt;Black hot drink&lt;/dd&gt;
&lt;dt&gt;Milk&lt;/dt&gt;
&lt;dd&gt;White cold drink&lt;/dd&gt;
&lt;/dl&gt;</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 &lt;dd&gt; 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">&lt;ol&gt;</a></td>
<td>Defines an ordered list</td>
</tr>
<tr>
<td><a href="../tags/tag_ul.asp">&lt;ul&gt;</a></td>
<td>Defines an unordered list</td>
</tr>
<tr>
<td><a href="../tags/tag_li.asp">&lt;li&gt;</a></td>
<td>Defines a list item</td>
</tr>
<tr>
<td><a href="../tags/tag_dl.asp">&lt;dl&gt;</a></td>
<td>Defines a definition list</td>
</tr>
<tr>
<td><a href="../tags/tag_dt.asp">&lt;dt&gt;</a></td>
<td>Defines a definition term</td>
</tr>
<tr>
<td><a href="../tags/tag_dd.asp">&lt;dd&gt;</a></td>
<td>Defines a definition description</td>
</tr>
<tr>
<td><a href="../tags/tag_dir.asp">&lt;dir&gt;</a></td>
<td class="deprecated">Deprecated. Use &lt;ul&gt; instead</td>
</tr>
<tr>
<td><a href="../tags/tag_menu.asp">&lt;menu&gt;</a></td>
<td class="deprecated">Deprecated. Use &lt;ul&gt; 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 + -