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