Answers for "html make text in box"

0

how to add text box html

<label for="textarea">WRITE COMMENTS HERE : </label><br><br>
     <textarea id="textarea" cols="30" rows="10" placeholder="write here..."></textarea>
Posted by: Guest on November-24-2020
0

text box

<input type="text" class="form-control" placeholder="Input box">
<input type="text" class="form-control" placeholder="Input box (disabled)" disabled>
<textarea class="form-control" rows="2" placeholder="Textarea"></textarea>
<textarea class="form-control" rows="2" placeholder="Textarea (disabled)" disabled></textarea>
Posted by: Guest on May-09-2021

Browse Popular Code Answers by Language