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