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