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