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