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