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