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