fieldset and legend Elements Form Area Containers Tutorial

Published :
Author :
Adam Khoury
Learn to render content sections on your web page that have a title placed directly into the border of the container by using dimple fieldset and legend tags which are part of form building in HTML. <html> <body> <fieldset style="border:#F00 1px solid;"> <legend style="color:#F00;">Box Title</legend> Here is some content <p>Here is another paragraph</p> </fieldset> </body> </html>