inserting html in input code example
Example 1: html textboxes
<input type="text" id="TextBox" name="TextBox">
Example 2: html putting content in input
<body>
<input type='text' value='Your wanted value/text here'></input>
</body>
<input type="text" id="TextBox" name="TextBox">
<body>
<input type='text' value='Your wanted value/text here'></input>
</body>