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