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