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