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