I have the below css code
.mybutton{
font-family : Segoe UI Semibold;
}
Semi bold applies properly in the above case
I need to change as below
.mybutton{
font-family: Segoe UI, Helvetica Neue, Arial Semibold
}
But Semi bold does not applied, how to achieve this with out using font-weight property
font: bold 15px "Segoe UI", Helvetica Neue, Arial;
– Patrick Mlr