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