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