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