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