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