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