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