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