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