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