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