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