Chrome. Google Fonts.
Fiddle: http://jsfiddle.net/simple/wpHKe/
HTML, :
<select>
<option value="">I'm a custom font.</option>
<option value="">Hey me too!</option>
<option value="">Averia Libre</option>
</select>
, CSS:
select {
font-size: 20px;
font-family: 'Averia Libre', cursive;
}
, Google:
, , .
@font-face {
font-family: 'Averia Libre';
font-style: normal;
font-weight: 400;
src: local('Averia Libre Regular'), local('AveriaLibre-Regular'),
url('http://themes.googleusercontent.com/static/fonts/averialibre/v1/rYVgHZZQICWnhjguGsBspHhCUOGz7vYGh680lGh-uXM.woff') format('woff');
}
Edit:
@Jhilom, , DropdDowns , CSS Select, :
HTML:
<select class="yourSelectClass">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
CSS
.yourSelectClass
{
}