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