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