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