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