[an error occurred while processing this directive]

Site Menu

HTML
Learn all about HTML, how to format text, add images, create tables, meta taga, and more!
.
JavaScript
Get the low down on JavaScript. See how to create popular JavaScript applications like drop down menus, clocks, dynamic messages, popup boxes, and more.
.
CGI
Concise, easy to follow introdction to CGI and how to install CGI scripts.
.
Web Design
A miscellanous section that includes various web design tutorials

 

123 Web Design!

Adding bullets and lists

HTML provides webmasters an easy way to create attractive bullets and lists for listing things. Before anything else, here's an example of both:

  • Bullet 1
  • Bullet 2
  • Bullet 3
  1. List 1
  2. List 2
  3. List 3

-Creating bullets

Bullets are created using the <ul> tag and the <li> sub tag for each individual bullet. Its best explained with an example:

<ul>
<li>Bullet 1
<li>Bullet 2
<li>Bullet 3
</ul>

-Creating lists

The syntax for (numbered) lists is very similar to bullets. Just substitute the <ul> tag with the <ol> tag:

<ol>
<li>List 1
<li>List 2
<li>List 3
</ol>