My current HTML input code is as follows:
<input type="number" min="4" max="100" step="1" name="myInput" value="33">
The value of this input field is being populated from a cookie or storage that was set on a previous screen where the user provided a party size.
However, from a user experience standpoint, it's not immediately clear what "33" represents on this screen. Since I am dynamically populating the input, using placeholder text isn't an option. This has led me to explore ways in which I can somehow inject the word "People" after the numerical value.
I do prefer the clean look of the UI without visible form labels, so I would like to avoid adding them if possible.
This is the current state of affairs: https://i.sstatic.net/rKP0F.png
And this is the desired effect (highlighted in red): https://i.sstatic.net/J17OX.jpg
It may be simply achieved through a background image, but I want to ensure the spacing remains neat and precise. Any suggestions or advice would be greatly appreciated! Thank you!