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