“texto de entrada HTML” Código de respuesta

texto de entrada HTML

<label for="name">Name (4 to 8 characters):</label>

<input type="text" id="name" name="name" required
       minlength="4" maxlength="8" size="10">
Rich Raccoon

cuadro de texto HTML

<!-- A <textarea> tag (better for multi-line text)-->
<textarea cols="4" rows="5">
Some text inside the text box.  
See https://www.w3schools.com/tags/tag_textarea.asp
</textarea>

<!-- An <input> type text tag (better for single-line text) -->
<input type="text" value="Some text inside the text box">
<!-- See https://www.w3schools.com/tags/att_input_type_text.asp -->

<!-- Using contenteditable (not recommended) -->
<p contenteditable="true">Some text inside the text box</p>
<!-- See https://www.w3schools.com/tags/att_global_contenteditable.asp -->
Coding Random Things

Cómo recopilar el cuadro de texto de entrada en HTML

<label for="name">Name:</label>
  <input type="text" id="name"><br><br>
Real Rocket Raccoon

Respuestas similares a “texto de entrada HTML”

Preguntas similares a “texto de entrada HTML”

Más respuestas relacionadas con “texto de entrada HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código