What are the codes to put lists in HTML documents? I havn’t used HTML in a while but i’m trying to write a website. All that I remember is there are several types of lists.
You don’t need to know it if you use a HTML editor. NVU is the best free alternative to Dreamweaver.
NVU – Finally! A complete Web Authoring System for Linux Desktop, Microsoft Windows and Macintosh users to rival programs like FrontPage and Dreamweaver. Nvu (pronounced N-view, for a “new view”) makes managing a web site a snap.
November 12th, 2007 at 3:12 pm
This is the code for a list:
You don’t need to know it if you use a HTML editor. NVU is the best free alternative to Dreamweaver.
NVU – Finally! A complete Web Authoring System for Linux Desktop, Microsoft Windows and Macintosh users to rival programs like FrontPage and Dreamweaver. Nvu (pronounced N-view, for a “new view”) makes managing a web site a snap.
November 15th, 2007 at 4:26 pm
Bulleted list
One
two
three
Numbered list
One
two
Three
November 19th, 2007 at 1:11 am
it depends on if you want an ordered list (numbered) or unordered list (bullets) … the code for an ordered list would look like
Item 1
Item 2
unordered list would just changed the ol to ul
November 21st, 2007 at 3:02 pm
for ordered list, put this code:
for the unordered list, put this code:
if you used the , the output would be like this:
1.:)
2.:(
3.:P
if you used the , the output would be this:
-:)
-:(
-:P
hope i helped:)