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