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