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