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