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