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