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