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