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