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