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