Tutorials

https://vvcestudio.com.br/en/tutorial/html/formulario_Legenda/
menu

HTML Form com Legenda

Tag <legend>Inside here enter the caption text</legend>.
Here is an example of a form with Caption.
Exemplo de Formulário com legendNome :

Senha :

Segue o código do formulário com legenda:
HTML code:
x
<form action="cadastro.php" method="POST">
<fieldset>
    <legend>Exemplo de formulário com legend</legend>
    Nome :<br/>
    <input type="text" name="nome" /><br/>
    Senha :<br/>
    <input type="password" name="senha" /><br/>
    <input type="submit" name="btn-enviar" value="Enviar" />
</fieldset>
</form>