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