HTML tag, which can be used to make the box

0

What tag in HTML can be used to make the box that surrounds Alternative Emails

    
asked by pj2016 14.02.2017 в 13:14
source

2 answers

2

Use a Fieldset with a Legend

Example:

<fieldset>
    <legend>Persona:</legend>
    Name: <input type="text"><br>
    Email: <input type="text"><br>
    Date of birth: <input type="text">
</fieldset>

link

    
answered by 14.02.2017 в 13:17
1

You can use a fieldset to do what you want:

*{
  font-family: Arial;
}

textarea{
  height: 80px;
  width: 220px;
}

.add{
  margin-left: 5px;
  position: fixed;
  margin-top: 15px;
}

.delete{
  margin-left: 5px;
  position: fixed;
  margin-top: 40px;
}
<form>
  <fieldset>
    <legend>Correos electrónicos alternativos:</legend>
    <textarea>[email protected]   [email protected]</textarea>
    <button class="add">Agregar</button>
    <button class="delete">Eliminar</button>
  </fieldset>
</form>
    
answered by 14.02.2017 в 14:33