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