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