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