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