writing inside input in html code example
Example 1: html putting content in input
<body>
<input type='text' value='Your wanted value/text here'></input>
</body>
Example 2: html input text
<label for="name">Name (4 to 8 characters):</label>
<input type="text" id="name" name="name" required
minlength="4" maxlength="8" size="10">