0
   

How do I create a bullet and number list in HTML?

 
 
Reply Fri 20 Apr, 2012 04:35 am
I am working on the website . How can i create a bullet and number list in html . Please share your relevant answers.
  • Topic Stats
  • Top Replies
  • Link to this Topic
Type: Question • Score: 0 • Views: 1,563 • Replies: 2
No top replies

 
jespah
 
  2  
Reply Fri 20 Apr, 2012 05:38 am
@Andy blunt,
Bulleted (unordered) lists are done as follows
E. g. if you want to see
  • dog
  • cat
  • horse


Code as follows
<ul>
<li>dog</li>
<li>cat</li>
<li>horse</li>
</ul>

For a numbered (ordered) list, do as follows
E. g. if you want to see
  1. dog
  2. cat
  3. horse


Code as follows
<ol>
<li>dog</li>
<li>cat</li>
<li>horse</li>
</ol>
DavidDunbar
 
  -1  
Reply Wed 22 Aug, 2012 06:29 am
@jespah,
To create a bullet and number in HTML the tag is used is
<ul>
<li>man</li>
<li>cat</li>
<li>book</li>
</ul>
or
<ol>
<li>man</li>
<li>cat</li>
<li>book</li>
</ol>
you can use the above tags according to your requirement.

0 Replies
 
 

Related Topics

Webdevelopment and hosting - Question by harisit2005
Showing an Ico File - Discussion by Brandon9000
how to earn money in internet - Discussion by rizwanaraj
The version 10 bug. Worse then Y2K! - Discussion by Nick Ashley
PHP and SWIG - Question by gungasnake
CSS Border style colors - Question by meesa
There is no Wisdom in Crowds - Discussion by ebrown p
THANK YOU CRAVEN AND NICK!!! - Discussion by dagmaraka
I'm the developer - Discussion by Nick Ashley
 
  1. Forums
  2. » How do I create a bullet and number list in HTML?
Copyright © 2013 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.06 seconds on 05/18/2013 at 04:19:13