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