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