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