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