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