I am a beginner in the world of pug and I'm trying to include the glyphicon glyphicon-calendar
in a dropdown menu labeled "All months".
.pull-right
select.form-control.btn-primary#selectMonth(style="margin-top: -15px;")
option(selected="selected" value='') All Months
option(value='1' ) January
option(value='2') February
option(value='3') March
option(value='4') April
option(value='5') May
option(value='6') June
option(value='7') July
option(value='8') August
option(value='9') September
option(value='10') October
option(value='11') November
option(value='12') December
Can someone please guide me on how to incorporate the glyphicons
?
Specifically, I would like to have a calendar glyphicon
displayed in front of the "All Months" option:
https://i.sstatic.net/c08Sa.png