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