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