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