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