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