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