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