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