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