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