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