You can add margin for either top one or bottom one.
If you want to add style for the top one…
style="margin-bottom:30px;"
If you want to add style for the bottom one …
style="margin-top:30px;"
And also, it is better to avoid inline styles..
In your HTML
<img src="your-source" class="my-img-class"/>
and in your CSS file
.my-img-class {
margin-bottom:30px;
}