“Tekst wejściowy HTML” Kod odpowiedzi

Tekst wejściowy 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

Pole tekstowe 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

Jak zbierać wejście tekstowe w HTML

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

Odpowiedzi podobne do “Tekst wejściowy HTML”

Pytania podobne do “Tekst wejściowy HTML”

Więcej pokrewnych odpowiedzi na “Tekst wejściowy HTML” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu