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