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