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