Here's my html
file. I want to add ₹
prefix to my input field. I'm working on an angular project and using botstrap for html pages.
product.component.html
<form>
<div class="form-group">
<label for="title">Title</label>
<input id="title" type="text" class="form-control">
</div>
<div class="form-group">
<label for="price">Price</label> <==Want to add here
<input id="price" type="number" class="form-control">
</div>
<div class="form-group">
<label for="category">Category</label>
<select id="category"class="form-control">
<option value=""></option>
</select>
</div>
<div class="form-group">
<label for="imageUrl">Image Url</label>
<input id="imageUrl" type="text" class="form-control">
</div>
<button class="btn btn-primary">Save</button>
</form>