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