<ul>
tag
<li>
preceding it.id
-- used to label the list for reference.
<h3>Hobbies</h3>
<ul>
<li>Chess</li>
<li>Hiking</li>
<li>Making Web Pages</li>
</ul>
creates the following:start
-- lets you start numbering at whatever value
you give.
<p>Important things to remember:</p>
<ol>
<li>Make sure to include the DOCTYPE line in your HTML code.
</li>
<li>Always put the <code><html></code> tag
immediately after
the DOCTYPE line.</li>
<li>Make sure to have both a <code><head></code>
and a <code><body></code> tag
</li>
<li>Include an end tag for each tag.</li>
</ol>
creates the following:Important things to remember:
<html>
tag immediately after
the DOCTYPE line.<head>
and a
<body>
tag.<dl>
tag
<dt>
tag denotes the term<dd>
denotes the definition
<h3>HTML Definitions</h3>
<dl>
<dt>the <code><a></code> tag</dt>
<dd>used to anchor or refer to other documents or another place in
the same document</dd>
<dt>the <code>href</code> attribute</dt>
<dd>specifies the URL of the target of the link</dd>
</dl>
creates the following:<a>
taghref
attribute
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Lists</title> </head> <body> <p>Here are Sklansky's top ten Texas Hold'Em starting hands:</p> <ol> <li>AA</li> <li>KK</li> <li>QQ</li> <li>JJ</li> <li>AKs</li> <li>TT</li> <li>AQs</li> <li>AJs</li> <li>KQs</li> <li>AK</li> </ol> <p>Here are some popular poker forms:</p> <ul> <li>Limit Texas Hold'em</li> <li>Seven Card Stud</li> <li>No-Limit Texas Hold'em</li> <li>Pot Limit Omaha Hi-Lo</li> </ul> <p>Some poker vocabulary:</p> <dl> <dt>Ajax</dt><dd>A-J in the hole</dd> <dt>Big Slick</dt><dd>A-K in the hole</dd> <dt>Fifth Street</dt><dd>The fifth communtity card in Texas Hold'em</dd> </dl> </body> </html> |
Here are Sklansky's top ten Texas Hold'Em starting hands:
Here are some popular poker forms:
Some poker vocabulary:
|