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