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