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