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