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