input with label inside code example
Example: html input label inside
<style>
#input_group{
position:relative
}
#label{
position:absolute;
left:5px;
top:50%;
transform:translate(0,-50%)
}
#input{
padding-left:40px
}</style>
<div id='input_group'>
<label id='label' for="input">Label:</label>
<input id='input' type="text">
</div>