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