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