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