Use on the webTotal Use [ 6059 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/711a30c6bced08a46253d914a1709448?family=Silk+Sans+Display+TRIAL+Medium+Oblique" 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/711a30c6bced08a46253d914a1709448?family=Silk+Sans+Display+TRIAL+Medium+Oblique);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Silk Sans Display TRIAL Medium Oblique";
src: url("https://db.onlinewebfonts.com/t/711a30c6bced08a46253d914a1709448.eot");
src: url("https://db.onlinewebfonts.com/t/711a30c6bced08a46253d914a1709448.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/711a30c6bced08a46253d914a1709448.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/711a30c6bced08a46253d914a1709448.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/711a30c6bced08a46253d914a1709448.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/711a30c6bced08a46253d914a1709448.svg#Silk Sans Display TRIAL Medium Oblique")format("svg");
}
2CSS rules to specify fonts
font-family: "Silk Sans Display TRIAL Medium Oblique";