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