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