Making bullet-point lists in HTML

I frequently make use of bullet-point lists in my blog, and I usually code these in HTML. I like them to stand out a bit. It’s pretty simple to achieve, and here’s how:
 

<ul>
<li>Bulletpoint 1</li>
<li>Bulletpoint 2</li>
<li>Bulletpoint 2</li>
</ul>

If you want a numbered list, you substitute the <ul> tag for <ol>


Posted

in

,

by

Comments

2 responses to “Making bullet-point lists in HTML”

  1. Sebastian Steinmann

    You cant be serious?

    Bulletpoints is marked up by:
    <ul>
    <li>Bulletpoint 1</li>
    <li>Bulletpoint 2</li>
    <li>Bulletpoint 3</li>
    </ul>

    For a numbered list you just use an orderd list: <ol>

  2. Aleksander R. Rødner

    well, why can’t I? it works, no?

    On a serious note; added

Leave a Reply to Aleksander R. RødnerCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.