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