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