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