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