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