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