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