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