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