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