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