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