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