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