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