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