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