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