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