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