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