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