Yes Kelly, this will make spacing on all paragraph. If you need to maintain on just two paragraph than you need to wrap both paragraph with p tag with specific class or id within it . Then finally you should give padding or margin to them. Here is the example:
//some text
//some text
Then on css file you need to add this css taking one of the class of paragraph.
.some_class {
padding: 10px; // this will provide padding 10px on all sides
margin-bottom:10px; // sets the bottom margin of an element.
}
Thanks