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