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