HTML CSS fieldset and legend Tag Form Containers HTML4 HTML5 tutorial
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.
Lesson Code
<html>
<body>
<fieldset style="border:#F00 1px solid;">
<legend style="color:#F00;">Title Your Box Here</legend>
Here is some content
<p>Here is another paragraph</p>
</fieldset>
</body>
</html>