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