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