|
There are 3 HTML codes for Lists:
Ordered List:
<ol> - </ol>
ex.
<ol>
<li> S
<li> Q
<li> U
<li> A
<li> D
<li> H
<li> E
<li> L
<li> P
</OL>
this will show as
1. S
2. Q
3. U
4. A
5. D
6. H
7. E
8. L
9. P
Unordered List:
<ul> - </ul>
Ex.
<ul>
<li> H
<li> P
<li> E
<li> D
<li> A
<li> S
<li> Q
<li> L
<li> U
</ul>
will be shown as:
• H
• P
• E
• D
• A
• S
• Q
• L
• U
Definition List:
<dl> - </dl>
ex.
<dl>
<dt>SQUADHELP</dt>
<dd>- A collaborative platform that uses an innovative concept to help online business owners achieve their naming, branding and marketing needs by running contests with a large community of experts. Start a contest and receive 200+ name suggestions in less than 3 days. Also a good resource to run viral marketing, SEO and Website testing contests.</dd>
</dl>
the html code above will appear like this:
SQUADHELP
- A collaborative platform that uses an innovative concept to help online business owners achieve their naming, branding and marketing needs by running contests with a large community of experts. Start a contest and receive 200+ name suggestions in less than 3 days. Also a good resource to run viral marketing, SEO and Website testing contests.
|