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