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