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