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