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