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