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