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