This is probably a basic html/css question...
I have a simple one-button form that I would like to display inline inside paragraph text.
Rea
Just use the style float: left in this way:
float: left
<p style="float: left"> Lorem Ipsum </p> <form style="float: left"> <input type='submit'/> </form> <p style="float: left"> Lorem Ipsum </p>