This tutorial will show you how to add stylish borders around your forms on your website.
You can view an example here. As you can see, there is a border around the form, but on the top left, there is text which you can use to describe the form in which your user is going to submit.
To start out, we need to write the following code:
<fieldset></fieldset>
Those make our border. but we want to have text that describes the form, and the form itself too. So between those 2 tags, you would insert:
<legend>DESCRIBING TEXT GOES HERE</legend>YOUR FORM GOES HERE
Where it says "DESCRIBING TEXT GOES HERE", you would put the text that describes your form. Then where it says "YOUR FORM GOES HERE", you would put your form code.