I want to show some text from a text box but user cannot change the text. How to do it?
if your submitting the text box in a form to another page somewhere in the text box dialog use readonly
eg
<input type="text" name="text" readonly>
if it doesnt need to be transfered you can also use
<input type="text" name="text" disabled>
How can I show the text inside the text box as BOLD.
<input type="text" style="font-weight: bold">