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