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