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