0

enter image description here

How can I write heading in between a border that it surrounds it but do not over ride on it. Please see the image so you'll be more clear what I want to do.

3 Answers3

3

https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/How_to_structure_an_HTML_form

check it out here, what you want is between <legend> </legend> tags in the code example at website listed above

Milos Rancic
  • 276
  • 3
  • 9
1

In your form you can use the below tag for the same

 <legend>*Your text here*</legend>

Make sure that your <legend> tag is inside a <fieldset> tag.

-1

use form>fieldset>legend>{title eg.Personal Info}

midnightgamer
  • 444
  • 1
  • 5
  • 18