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