Bootstrap bulletlists / bulletpoints

Pumizo picture Pumizo · May 16, 2016 · Viewed 11.1k times · Source

How can I turn my actual text into bullet-points like in the given example?

This is what I have

This is what I need

My Bootstrap code

<div class="row">
<div class="span12">
        <div class="inside">
          <hgroup>
            <h2>RESPECT FOR THE INDIVIDUAL</h2>
          </hgroup>
          <div class="entry-content">
            <p>• We listen to the other person without interruption and practice effective listening skills.<br>


Answer

Guruprasad J Rao picture Guruprasad J Rao · May 16, 2016

You can use &#9642; which is a html - unicode as below:

<div class="row">
  <div class="span12">
    <div class="inside">
      <hgroup>
        <h2>RESPECT FOR THE INDIVIDUAL</h2>
      </hgroup>
      <div class="entry-content">
        <p>&#9642; We listen to the other person without interruption and practice effective listening skills.</p>
        <p>&#9642; We do not shy away from challenges</p>
        <p>&#9642; We stay true to our slogan</p>
      </div>
    </div>
  </div>
</div>