Hello I am creating a document and some section I want it to be as I show below, a list of several paragraphs, which have tabulation with respect to the rest of the text of the page leaving space to the left in all the paragraph of the list and its point at the beginning of each new paragraph.
As This is what I need: '
- A paragraph with a tabulation and a point at the beginning where to write what my list needs
- Here I get it with a simple list, but in my project it does not work.
![](https://i.stack.imgur.com/bmmRl.png)
In the project I am using Bootstrap v3.3. and Font Awesome 4.4.0, I do not know if this will have something to do because in my page it is shown without the tabulation or the point at the beginning, just two paragraphs are shown. I show the code that I use for the list:
<ul>
<li>
Un párrafo con tabulacion y punto al inicio donde escribir lo que mi lista necesita
</li>
<li>
Aqui lo consigo con una simple lista, pero en mi proyecto no funciona.
</li>
</ul>
What should I do to get what I need?
Thank you.