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