Use on the webTotal Use [ 3126 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/65d98f1e029479aa9066b5f416a7e698?family=Monte+Stella+Trial" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/65d98f1e029479aa9066b5f416a7e698?family=Monte+Stella+Trial);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Monte Stella Trial";
src: url("https://db.onlinewebfonts.com/t/65d98f1e029479aa9066b5f416a7e698.eot");
src: url("https://db.onlinewebfonts.com/t/65d98f1e029479aa9066b5f416a7e698.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/65d98f1e029479aa9066b5f416a7e698.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/65d98f1e029479aa9066b5f416a7e698.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/65d98f1e029479aa9066b5f416a7e698.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/65d98f1e029479aa9066b5f416a7e698.svg#Monte Stella Trial")format("svg");
}
2CSS rules to specify fonts
font-family: "Monte Stella Trial";