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