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