JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller="ctrl">
<select ng-model="selected" ng-options="font for font in webfonts | orderBy:'toString()' " name="fonts">
<option value="">Choose a font</option>
</select>
</div>
JavaScript
function ctrl($scope) {
$scope.webfonts = ['Abel', 'Crafty Girls', 'Lato', 'Average', 'Corben', 'Quicksand'];
}