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