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