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