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