How can I turn my actual text into bullet-points like in the given example?
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>
You can use ▪
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>▪ We listen to the other person without interruption and practice effective listening skills.</p>
<p>▪ We do not shy away from challenges</p>
<p>▪ We stay true to our slogan</p>
</div>
</div>
</div>
</div>