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