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