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