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