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