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