in my html use select options drop-down list but it's not working in my Angular project
<td>
<select type="text" class="form-control" [(ngModel)]="addressDetails.AddressTypeId"id="AddressTypeId" formControlName="AddressTypeId" style="height:29px; width:200px; padding:3px">
<option disabled selected value > -- select an option -- </option>
<option *ngFor="let addressType of addressTypeDetails" value={{addressType.AddressTypeID}}>
{{addressType.AddressType}} </option>
</select>
</td>