“HTML -Eingabetext” Code-Antworten

HTML -Eingabetext

<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

HTML -Textfeld

<!-- 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

So sammeln Sie ein Eingabtextextexpon in HTML

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

Ähnliche Antworten wie “HTML -Eingabetext”

Fragen ähnlich wie “HTML -Eingabetext”

Weitere verwandte Antworten zu “HTML -Eingabetext” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen