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