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