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